Latest Posts


  • Educative.io

    Level Up Your Coding Skills with Educative.io – Your Gateway to Expertise in Tech Are you looking to enhance your tech skills or maybe even make a career pivot into the fast-paced realm of software development? Look no further than… Continue reading

    Educative.io
  • How does the MS Graph “Sites.Selected” permission work for granular permissions for SPO sites?

    Originally posted on Pankaj Surti's Blog: Summary To provide granular access for the sites the Azure Access Control (ACS) was used in the past. The app id and secret can be created using the add-ins, more info is described here.… Continue reading

  • Swooping into Site Designs

    Originally posted on Bob German's Vantage Point: A few months ago a group of SharePoint MVPs gathered to film a new kind of reality TV show and remake a company’s Intranet. You may have seen it – SharePoint Swoop! This is… Continue reading

    Swooping into Site Designs
  • Building SharePoint Site Designs with Themes and Azure Functions

    Originally posted on Bob German's Vantage Point: This article is the sequel to Swooping into SharePoint Site Designs, in which I related my experience working behind the scenes on the world’s first SharePoint reality show! This time I’ll explain the code so you… Continue reading

    Building SharePoint Site Designs with Themes and Azure Functions
  • Start Developing in OfficeJS Today with Script Lab

    Recently, I have been working with a tool from Microsoft Garage which allows you to quickly develop OfficeJS projects in Word, Excel and PowerPoint. It is called Script Lab. You can find more information about it here: Script Lab It… Continue reading

    Start Developing in OfficeJS Today with Script Lab
  • Updating the Item Properties Displayed on a Nintex Workflow Task

    Originally posted on TechRhodes: By default, certain Nintex workflow task forms include an Item Properties panel that displays all the metadata and certain SharePoint columns for an item in a list/library .? Since there could be a long list of… Continue reading

  • SharePoint 2013 Visual WebPart .g.cs files not being generated /Updated by Visual Studio 2012

    Originally posted on TechNet Team: 1.Navigate Visual Webpart. 2. Right Click on VisualWebPart1UserControl.ascx file and click on  Properties. 3.if  VisualWebPart1UserControl.g.cs is present then delete it first. 4.Go To Custom Tool Text box on properties window and  type “SharePointWebPartCodeGenerator” keyword and press enter. then… Continue reading

  • When setting the MySiteHostUrl I get a UserProfileApplicationNotAvailableException

    Originally posted on Bram de Jager – Architect, Speaker, Author: When I’m trying to set the MySiteHostUrl via PowerShell it throws an error. Taking a closer look it seems after initializing the UserProfileManager class an UserProfileApplicationNotAvailableException is raised. The exception… Continue reading

  • Change order of user profile properties in SharePoint 2013 with Powershell

    Originally posted on Radu Tut: Management of user profile properties in SharePoint CA user interface is easy and intuitive, but when it comes to changing the display order of user profile properties, this becomes a difficult and frustrating task (and… Continue reading

  • ASP.NET MVC5 and DataTables

    Thanks to Stack Overflow http://stackoverflow.com/questions/28442960/asp-net-mvc5-and-datatables-for-a-beginner-what-goes-where http://stackoverflow.com/questions/22546986/mvc-jquery-datatables-unable-to-get-property-classname-of-undefined-or-null-re In BundleConfig.cs I added the following lines: bundles.Add(new ScriptBundle(“~/bundles/jquery”).Include( “~/Scripts/jquery-1.10.2.min.js”)); bundles.Add(new ScriptBundle(“~/bundles/datatables”).Include( “~/Scripts/jquery.dataTables.js”)); In _Layout.cshtml I added the following to the head tag: <link href=”~/Content/jquery.dataTables.css” rel=”stylesheet” type=”text/css”/> <link href=”~/Content/jquery.dataTables_themeroller.css” rel=”stylesheet” type=”text/css” /> http://~/Scripts/jquery-1.10.2.min.js http://~/Scripts/jquery.dataTables.js… Continue reading