Posts Categorized: SharePoint Online

2024 SPFx Development Environment Software List

Posted by & filed under , .

Quick list of use software for SPFx development as of 2024 Requires a license for commercial use (but is worth it): Snagit – Awesome tool for capturing and marking-up screenshots – https://www.techsmith.com/store/snagit Beyond Compare – Tool for comparing file contents –  https://www.scootersoftware.com/shop Teracopy Pro – Tool for copying files quickly, copies tons of small file […]

Application Insights and Power BI – Expand dynamic customDimensions JSON object into new columns automatically

Posted by & filed under , , .

(Note: If you’re already familiar with importing Application Insights data into Power BI, and just want to skip to the solution for dynamically expanding the customDimensions JSON object into columns, skip to Solution 2) When using Application Insights, there are a number of additional attributes you might wish to track. One common example when tracking […]

Special Characters in RefinementFilter

Posted by & filed under .

When attempting to use a refiner with values containing special characters (hyphen, dash, backslash, etc) you’ll run into an issue where the refinementfilters=’property:equals(“value-name”)’ doesn’t return any results (despite the refiner indicating that it has results matching this value). There is a technet discussion around this issue, but the suggested resolution loses the precision of the “:equals” […]

JavaScript Event That Fires When SharePoint Page Has Finished Loading

Posted by & filed under , , , , .

If you’ve ever had an issue with JavaScript running before the element you’re trying to manipulate on a SharePoint page has loaded, this post is for you. Rather than momentarily considering using something terrible like a setTimeout to delay execution, we can instead use an event that will let us know when the “body” of […]

Building a Custom Filter Web Part for a List View Web Part, the Easy Way

Posted by & filed under , , , , .

This might not meet everyone’s needs, if you have a truly difficult filter (or even multiple Lists on the same page that you don’t want to filter together), this might not work, but the most common configuration I’ve run into is a standalone page with a List View for a specific list. This is usually […]