Skip to main content

Microsoft

Client-side scripting with Formcontext UI Object on Model Driven App (Dynamics 365 )

A technology developer working with code

This article will look at the implementation of client side scripts on Microsoft Dynamics 365 using a model-driven approach, which provides additional benefits on the UI level and allows us to easily access Form UI properties such as tabs, sections, fields and access, security role, complex validations and so on.

So, here in Dynamics 365, I’ve created a custom table named “Customer”, and configured a form named “Information”.

B2

 

As you can see in the Form, I added three tabs, and you can see in the Tab 1 properties that “Expand the tab by default” is checked, so when this form loads in the browser, the focus will be set to tab 1 only. (Model-driven form’s default functionality).

B3

If we want to make tab 3 the default focus, we must do client-side customization, which can be done in a Web resource with JavaScript.

Follow along as I go over the next steps.

Step 1: Create a Web resource within your solution.

B4

Step 2: Select the JavaScript file, give it a full display name, and select the JavaScript type.

B5

Step 3 : Below code snippet of simple JavaScript function and provided “executionContext” as a parameter.

Note: The execution context defines the event context in which your code executes. The execution context is passed when an event occurs on a form or grid, which you can use it in your event handler to perform various tasks such as determine formContext or gridContext, or manage the save event.

function Setdefaultfocus(executionContext)
{
     //Created object of formContext
     var formContext = executionContext.getFormContext();
     formContext.ui.tabs.get("tab3").setFocus();
}

We created an executionContext object in this function so that we could access form UI properties such as tabs, sections, fields, and other accessible properties. The tab name can be obtained from the Form Tab properties and added using the code snippet below.
For instance, ti.tabs.get (“provide tab name”).

Step 4: Execute the code snippet on the Form event.

Go to the form, click Form Libraries, and look for a web resource that was created in step 2.

B6
Now, on the right side of the form, click on event and select load event, then select the Library where the JavaScript code is written, then in functions, provide the function name and ensure the option “Enable and pass exaction as the first parameter” is checked. 
Finally, save your changes and press the Publish button.
B7
With this code, you can now set the default focus from Tab 1 to Tab 3. When the form loads or refreshes, the JavaScript function executes on the load event. (See output down below)
Tabfocus Output

Conclusion

We learned about the advantages of client side scripting and how to use the JavaScript function in web resources to extend event-based functionality and improve the UI/UX experience on Dynamics 365 Model-Driven App.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Chetan Khanapure

Chetan Khanapure works as a Solution Architect at Perficient in the Nagpur GDC, India. I have 11+ years of technical experience on Microsoft Practices Power Platform, Dynamics 365, and .NET Technologies.

More from this Author

Categories
Follow Us
TwitterLinkedinFacebookYoutubeInstagram