you will have to write javascript that will set value of your Tabs choice control to desired value.
try to search the forum for how to set choice control value from javascript, you will definitely find plenty of examples.
Thanks Marian. I will look through the forum.
Hi Lisa,
In edit/new mode the form should default to your employer tab because that's the default value. In display (read) mode you can write a rule to display that panel. Use the IsDisplayMode function.
For example if your tab is called employer details and your control is called Tabs then you can write something like this for the panel that hides employer details.
Tabs!='Employer Details' && !(Is Display Mode&&Tabs=='')
This assumes you are not binding the Tabs control to a list column.
Cheers,
Chris
,
1. default value is evaluated just in NEW mode, not in EDIT mode
2. using rules you can manage visibility of the form controls, but you can not set control's value.
so with pure rule approach you will end up with inconsistencies like Tabs control having value related to tab X but panel related to tab Y is being shown.