Abhinav Dhiman
Abhinav Dhiman

Reputation: 755

Region Display based on value selected in a Radio Group

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

Answers (1)

Littlefoot
Littlefoot

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

Related Questions