Dynamics 365 Field Security

…the new field created above: Open the field. Note the options available: Now select a user or team to add to the field permissions. These users will be able to…

Dynamics CRM JavaScript OnSave and OnLoad

In Dynamics CRM, you have the ability to hook onto the OnLoad and OnSave events of an entity. We will go through a simple example. Open the entity in Customizations….

Omnichannel Chat on a Power Apps Portal

…Snippets, then new: Create a new content snippet, and copy the Omnichannel chat code to the HTML section of the content snippet: Now we need somewhere to place the code….

Creating a Branch of a Branch in GitHub

…Select Home->Changes: Enter commit text and click Commit All: Sync with GitHub: Click Push: Pushed successfully: Release 1a is now created in GitHub: With the Program.cs file updated Note release…

Compare Dates in JavaScript

…being compared. To compare the dates, use: var date1 = new Date(“2018-01-01 00:00”); var date2 = new Date(“2018-01-01 00:00”); if (date1.getTime() == date2.getTime()) console.log(“equal”) else console.log(“not equal”) This returns:  …