FOCUS ON A TAB USING JAVASCRIPT IN DYNAMICS 365

Let’s look at JavaScript code to move a user to a specific tab in Dynamics 365 / Power Apps.

Below on the Account record I have these tabs – Summary, Project Price Lists, General etc:

Let’s go to the General tab when something happens, like changing a field value.

The General tab is called Partner_Details:

context:function
FocusOnTab(executionContext)
{ var formContext = executionContext.getFormContext(); formContext.ui.tabs.get(“Partner_Details”).setFocus(); }

Here’s the code is below. Be sure to pass the execution

Now we start on the Summary tab:

Run the code, and we’re taken over to the General tab:

FOCUS ON A TAB USING JAVASCRIPT IN DYNAMICS 365

https://www.youtube.com/@powerappsninja

Leave a Comment

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