Page 1 of 1

Tab Default

Posted: 27 May 2013
by bburke
At least for me, If the user returns to the form after exiting, they return to the last tab they were on.

Example: If they last used tab 4 and close the form, when they return they are on tab 4.

This appears to remain during the browser session, if I close and restart browser and open the form, they are on tab 1.

Is it possible to return user to tab 1 each time they visit the form?

(not sure if it matters but I am using jquery-ui theming)

Re: Tab Default

Posted: 28 May 2013
by Dmitry Kozlov
Yes, just put the following js-code into js-editor:

Code: Select all

$('#fd_tabcontrol-0').tabs('option', 'active', 0);
Now the first tab will be opened each time user opens the form.

Re: Tab Default

Posted: 28 May 2013
by bburke
Thanks, works great.