1
votes

Is it possible to hide a static content region? When I hide the buttons inside the region the frame stays visible. Whats the best way to accomplish that?

2

2 Answers

3
votes

Hide the whole region. Use "Server side condition" to do that. For example, if it should be hidden if :P1_HIDE = 'Y', then you could use "Function body that returns a Boolean" and put

return :P1_HIDE <> 'Y';

in there, which means that it'll be visible unless that item's value = 'Y'.


Alternatively, you could use "Show" / "Hide" dynamic actions.

0
votes

You can definitely hide it, its just a question of when you want to hide it.

If the buttons are hidden if some condition is met on load, your best bet is to go into Server Side condition on the region.

If they are hidden by a dynamic action, then you can also hide the entire region like that.