- Dokument veröffentlichen: Aktuell eingeloggter Benutzer wird an Service mitgeschickt.
- "PDF erzeugen" Checkbox ist neu nur bei Word-Dokumenten aktivierbar
| import * as React from "react"; | |
| import * as ReactDom from "react-dom"; | |
| import { Version } from "@microsoft/sp-core-library"; | |
| import { BaseClientSideWebPart } from "@microsoft/sp-webpart-base"; | |
| import { initializeIcons } from "@uifabric/icons"; | |
| import { sp } from "@pnp/sp"; | |
| // property pane | |
| import { IPropertyPaneConfiguration, PropertyPaneTextField } from "@microsoft/sp-property-pane"; //prettier-ignore | 
| import React from "react"; | |
| import styled, { css } from "styled-components"; | |
| export enum Orientation { | |
| HORIZONTAL = "horizontal", | |
| VERTICAL = "vertical" | |
| } | |
| export interface StackProps { | |
| children: any; | 
| <!-- Render URL's of Url Filetype correctly --> | |
| {{#eq FileType 'url'}} | |
| {{getUrl item}} | |
| {{else}} | |
| http://{{Title}} | |
| {{/eq}} | |
| <!-- Render last user of Authr field --> | 
| enum OfficeAppType { | |
| Word = "ms-word:", | |
| Powerpoint = "ms-powerpoint:", | |
| Excel = "ms-excel:", | |
| Visio = "ms-visio:", | |
| Project = "ms-project:", | |
| Publisher = "ms-publisher:", | |
| } | 
| let _relativeLibraryUrl = this.context.pageContext.list.serverRelativeUrl | |
| .replace(this.context.pageContext.web.serverRelativeUrl, "") | |
| .replace(/(^\/+|\/+$)/g, ""); // match all start and end occurances of '/' character | 
React Jira Clone:
https://github.com/oldboyxx/jira_clone
Mongo DB GraphQL
https://github.com/mongodb-appeng/taskit
| import { SPHttpClient } from "@pnp/sp"; | |
| import { BaseComponentContext } from '@microsoft/sp-component-base'; | |
| export interface IHttpResponseValue { | |
| parameter: string; | |
| } | |
| export const getList = async (context: BaseComponentContext, listName: string): Promise<any> => { | |
| var http = new SPHttpClient(); | |
| var baseUrl = context.pageContext.web.absoluteUrl; | 
All notable changes to this solution and its webparts/extensions will be documented in this file.
Solution: VisualMetadataNavigation
Webparts: visualMetadataNavigation, filterableDokumentList, vmnDetail
[Readability,Accessability]
| <CustomAction | |
| Title="PublishDocuments" | |
| RegistrationId="0x010100321566DF2DF30743A6241CE8C2AC7FEB000C4BE455A288CE4CBAAAC624CDA70FFC" | |
| RegistrationType="ContentType" | |
| Location="ClientSideExtension.ListViewCommandSet.CommandBar" | |
| ClientSideComponentId="5800008d-fac6-4e2b-b855-36239bc25776" | |
| ClientSideComponentProperties="{"sampleTextOne":"One item is selected in the list.", "sampleTextTwo":"This command is always visible."}"> | |
| </CustomAction> |