System.Uri and Site.OpenWeb
Often we're in a situation when we need to get a server relative url from absolute url.One of the easiest ways to do that in C# is to use System.Uri object like that:
Often we're in a situation when we need to get a server relative url from absolute url.One of the easiest ways to do that in C# is to use System.Uri object like that:
This post is based on the question in sp-dev-docs repo.The question is how can we render a Google Charts in SPFx web part.Actually, it's pretty easy thing to do. As a starting point I'll be using the code provided in...
Sometimes, especially when developing custom SharePoint Add-ins, we want to host assets (JavaScript, CSS, etc.) in Master Page Gallery.This is a pretty standard approach that allows to reference the same resources from sub sites (I know that sub sites are...
This post is a sum up of the conversation held in Twitter regarding versioning of your SharePoint Framework solutions.In package-solution.json file of the SPFx project there is a property versionThe description from the currently tells us that:Optionally, you may also...
When you need to change the Home Page of Modern Team Site in SharePoint Online it's pretty easy to do through UI.Just go to the Pages library, open context menu for the page you want to make a homepage and...
This is the fifth post about SharePoint Framework and Vue.js. In this post I want to show how to use React components inside Vue.js-based SharePoint Framework solutions.List of posts:Whats and WhysDefault SPFx web part using Vue.jsYeoman generator with Vue supportWeb...
This is the fourth post about SharePoint Framework and Vue.js. In this post I want to go through the process of creation custom Property Pane control using Vue.js.List of posts:Whats and WhysDefault SPFx web part using Vue.jsYeoman generator with Vue...
UPDATE: the generator has been included into @pnp/spfx generator. Please use this one for the latest version.In Using Vue.js in SharePoint Framework Applications. Part III: Yeoman Generator with Vue Support I announced that I've published a Yeoman generator for SharePoint...
When working with Term Store take into consideration that SharePoint for some reason replaces ampersand character & (code 38) with ampersand character & (code 65286) in the label. The bad thing is that if you create a Term with the name with...
UPDATE: the generator has been included into @pnp/spfx generator. Please use this one for the latest version.This is the third post about SharePoint Framework and Vue.js. In this post I want to announce a Yeoman generator for SPFx web part...