
Exploring Microsoft Dynamics 365, Microsoft 365, Power Platform and Azure
- Setup Bootstrap SCSS in Angular 13 Manuallyby Suresh MauryaThere might be chances you have set up your angular application with CSS styles but later you want to change it to use SCSS instead. This blog post will show how we can change the existing Angular 13 application to use SCSS instead of CSS. Steps: Update angular.json file. Update CSS files for SCSS extension. … Continue reading Setup Bootstrap SCSS in Angular 13 Manually
- Power Automate: Loop Through the Dataverse Child Records and Analyse input/outputby Suresh MauryaLet’s see how we can loop through the child records returned from the Dataverse, and analyse the input / outputs at each step. Following is the example scenario we will cover. On deactivation of Account record we want to loop through the related opportunities. Following are the steps we will cover: Create Cloud Flow on … Continue reading Power Automate: Loop Through the Dataverse Child Records and Analyse input/output
- Publish Ionic Web App to Firebase Hostingby Suresh MauryaFirebase hosting allows to host web apps, let’s see how can publish the Ionic app to Firebase hosting. Following are the steps: Generate production www web App folder from the Ionic app Prepare Firebase Hosting project to publish the web app Copy www folder to Firebase hosting project Publish the web app Generate production www … Continue reading Publish Ionic Web App to Firebase Hosting
- TypeScript / JavaScript: Create Array Chunks from Given Arrayby Suresh MauryaOften we need to process the array in batches rather than processing whole of the array at once. For that purpose we may need to split the array in chunks of a specified size. Let’s see how we can split the array in chunks of a specified chunk size. Consider the following array. and we … Continue reading TypeScript / JavaScript: Create Array Chunks from Given Array
- TypeScript / JavaScript: Sort Object Array By Propertyby Suresh MauryaLet’s see how we can quickly sort TypeScript / JavaScript object array by property. We will sort the array in following ways: Sort the array by property in increasing order Sort the array by property in decreasing order Consider following products array. Sort the array by property in increasing order Suppose we want to sort … Continue reading TypeScript / JavaScript: Sort Object Array By Property