10-05-2019 12:44 AM - edited 10-05-2019 12:46 AM
Hi ,
How to open a specific Tab on a Form?
GMSC 2016
Example in the forum did not work for me.
Regards
Naeem
10-08-2019 04:58 AM
Hi Naeem,
It would be good to include the code you use that isn't working as well as a link to the specific 'example in the forum' that does not work for you so that we can provide an effective reply here.
10-14-2019 03:37 AM
HI,
I did not write any code.
Need to know , how can i acheive to open a specific tab after reloading the page.
Regards
Naeem
10-14-2019 11:23 AM
hi Naeem,
the way to do it should be what has been described here:
If you can put additional details of your current workflow configuration we may try to be more specific.
thanks,
Stefano
10-19-2019 10:56 AM
Hi,
Sorry...
On the form ready : i added
Still do not know how it will work.
IG.getItemById("KROKI_FORM_ARABIC_Tab").show();
IG.reloadPage();
Regards
Naeem
08-25-2020 03:54 AM
Hi there,
Remove the reloadPage line.
It should look like this:
IG.events.onFormReady(function(form) {
IG.getItemById("KROKI_FORM_ARABIC_Tab").show();
});
KROKI_FORM_ARABIC_Tab must be the name value of the FormTab tag, not the label.
Regards,
Cosmin
08-25-2020 04:04 AM
Thanks Cosmin!
Regards
Naeem