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: