Open form with a different tab (tab control)

Hey there,

I was wondering if it is possible to open a form in a different tab than usual by maybe changing the URL i.e. after saving it or some other specific action.

image

image
↑ but only if the specific action is triggered!

Thanks for reading! =)
-Cherry

Hello @Cherry,

You can change the active tab on form load using this code:

fd.spRendered(function() {
    fd.container('Tab0').setTab(1);
});

Please find more information about tab container here.

1 Like