Author: Ella Murphy

Power Apps How To Get The Height Of Any Gallery
Power Apps How To Get The Height Of Any Gallery
Blog Posts

What’s The Problem We’re Solving? We want our apps to look natural and only have 1 scroll bar, we want to avoid nested scrollbars because our users hate them and find them confusing.  Let’s dynamically get the height of our galleries to help our users!  What’s The Solution? https://youtube.com/watch?v=-Jb-HW-sqKQ%3Fcontrols%3D1%26rel%3D0%26playsinline%3D0%26modestbranding%3D0%26autoplay%3D0%26enablejsapi%3D1%26origin%3Dhttps%253A%252F%252Ftheloadingpoint.com%26widgetid%3D1 Let’s dynamically calculate the height of the… READ MORE

SharePoint List and Microsoft List Column Formatting Options
SharePoint List and Microsoft List Column Formatting Options
Blog Posts

What you’ll find here I wanted an exhaustive list (to be updated in future with updates) of SharePoint List or Microsoft List Column Formatting options, examples from this GitHub page.  It allows to format a SharePoint Online or SharePoint 2019 list or document library using some JSON code. For SharePoint 2019, there are limitation and few things… READ MORE

Create a Simple Teams Creation Workflow using Power Automate
Create a Simple Teams Creation Workflow using Power Automate
Blog Posts

Why do I need to build a Teams creation process using Power Automate? What’s wrong with the standard Team creation process? Well when you create Microsoft Teams out of the box there are only limited governance capabilities. For example: Limited Teams naming standard Teams with duplicate display names can be created Only one owner is… READ MORE

Sending Per User Notifications using Azure Functions SignalR Service Output Binding
Sending Per User Notifications using Azure Functions SignalR Service Output Binding
Blog Posts

In this post, let’s have a look at how to send user Notifications using Azure Functions SignalR Service output binding. I already have an Azure SignalR Service and Azure Function setup. My client app is an Angular application. In my Azure Function, I have the Negotiate function as follows. public static class NegotiateFunction {     [FunctionName(FunctionNames.Negotiate)]     public static SignalRConnectionInfo Run(         [HttpTrigger(AuthorizationLevel.Function, “get”, “post”, Route = null)] HttpRequest request,         [SignalRConnectionInfo(             HubName = “%SignalR_HubName%”,             UserId = “{headers.x-application-user-id}”,             ConnectionStringSetting = “SignalR_ConnectionString”)] SignalRConnectionInfo connectionInfo)… READ MORE