Dynamics CRM: addOnLookupTagClick and removeOnLookupTagClick

Today we will learn simple methods that are related to the datatype lookup on CRM: addOnLookupTagClick and removeOnLookupTagClick. Basically, addOnLookupTagClick is a function to register an event when the user is clicking the lookup tag value. Click the Lookup Tag value From the image above, if we click the lookup tag value and we register the events using addOnLookupTagClick, those events will be … Continue reading Dynamics CRM: addOnLookupTagClick and removeOnLookupTagClick

Canvas Apps: Create Simple Game – Alphabet Hero

To be honest with you guys, I rarely playing with Canvas Apps. The first time I hands-on to the Canvas Apps was when Malaysia Dynamics 365 User Group App in a day event back in 2019. And then for this week's blog post because I run out of ideas while waiting on my submission for Azure … Continue reading Canvas Apps: Create Simple Game – Alphabet Hero

Get Environment Variable in a Flow using Custom Web API

Inspired by a blog post by Natraj about "Using Custom API as a trigger for Flow" that you can find here, I am thinking to create a sample collection of Custom Web API that all people can make use of/learn the code (the code design might not be suitable for you, but I open for discussion for … Continue reading Get Environment Variable in a Flow using Custom Web API

Dynamics CRM: Create Plugin Project Easier + Faster!

Creating plugin projects in the past is not a simple task. You need to remember a lot of steps to make it. From what I remember the steps are: Create .csproj, set .NET Framework 4.6.2, Install Microsoft.CrmSdk.CoreAssemblies, etc. You can follow this link for the detailed steps for manual creation if you want. Then I found a … Continue reading Dynamics CRM: Create Plugin Project Easier + Faster!

How To Setup Bootstrap On Your PCF Project

How many of you already know about PCF (PowerApps Component Framework) control? A framework that lets us (developer) create customize UI to be used in PowerApps. Because we are talking about customized UI and I'm a pure programmer, make use of Bootstrap is always a way to go for me. Bootstrap can help me more focus on … Continue reading How To Setup Bootstrap On Your PCF Project

Dynamics CRM: Setup PowerApps.UIAutomation.Api for The UI Testing

Do you know that we can do UI Testing easily in Dynamics CRM? In this blog post, we will learn about how to set up a solution project for doing UI testing using the PowerApps.UIAutomation.Api nuget package. Like the naming, UI testing meaning that testing that being done automatically (via code) on the UI. Not … Continue reading Dynamics CRM: Setup PowerApps.UIAutomation.Api for The UI Testing

Exploration: Dynamics CRM Client Scripting – Xrm.Utility.lookupObjects

Do you know that in Xrm.Utility object now got a nice function called lookupObjects? When we called this function, it will help us open a nice dialog that lets us choose (single or multiple) records and return to us an array of the selected data. We can pass lots of combinations of parameters to make the dialog more … Continue reading Exploration: Dynamics CRM Client Scripting – Xrm.Utility.lookupObjects

Dynamics CRM Model-Driven Apps: How to use executionContext.setSharedVariable and executionContext.getSharedVariable

In my blog post, I had explained how to use setSharedVariable and getSharedVariable functions for plugin development that you can read here. When I check on the documentation in the Client API reference, we also can found there are the same functions that we can use for front-end development (JavaScript) in the executionContext. But the … Continue reading Dynamics CRM Model-Driven Apps: How to use executionContext.setSharedVariable and executionContext.getSharedVariable