Reputation: 755
I have a requirement that 2 different regions need to displayed based on the value chosen by the user through a radio button.
Is there any way to do that?
Upvotes: 0
Views: 741
Reputation: 142705
Yes, use Server side condition for each of those regions. Suppose radio group values are 1
and 2
, then you might use a function that returns Boolean:
return :P1_RADIO_GROUP = 1;
so - if condition is met, region will be displayed.
Upvotes: 1