Hi Jeff,
As you can see in the template, you can give any field a condition when it has to be displayed and when not.
For all fields which are playing a role in any of these conditions, go to the client tab and tick the box to send the new value to the server.
Click the client side code button and, in the embed, type: p_web.ssv('myXXX;yesNo', XXX:yesNo) - to store the value of field XXX:yesNo into sessionvar myXXX:yesNo.
Save and close the embed.
Add the (to be) conditioned field to the reset-list in the template. This is to reset the field after this client side code has completed.
Set the condition for the field, using the session vars. In this case use p_web.gsv('myVar') to retrieve the actual value of the var.
E.g.: 'myXXX:yesNo = ' & p_web.gsv('myXXX:yesNo') ! myXXX;yesNo is numeric here.
Alfanumeric fields need some extra quotes like:
'XXX:yesNo = <39>' & p_web.gsv('myXXX:yesNo') & '<39>' ! <39> is a single quote
When typing in a condition field, use F10 to create a bigger field on the screen for a better view.
Cheers,
Rene