Many web frameworks allow you to specify page content that appears conditionally from within the html or template file with a tag or logical instruction of some sort, such as an if tag. In keeping with the seperation of view from the controller, wicket does not offer this functionality.
A common question, then, is how to conditionally render some content. Perhaps you want to display a form element only if appropriate, or a footer only on pages concerning a particular subject.
In wicket, there are two ways of dealing with this situation:
Example:
|
|
Extended version:
|
|
Based on the user mailing list, here are some things to keep in mind when dealing with conditional visibility.
If the component itself controls its own visibility the best way is to override
onConfigure()and callsetVisible()inside.If an outside component controls another’s visibility the best way is to override the controlling component’s
onConfigure()and callcontrolled.setVisible()If you have a simple state toggle, like “when i click this link i want this component’s visibility to change” then calling
component.setVisible()is fine.If you have a cross-cutting concern (authorization strategy, configure listener, before render listener, etc) overriding component’s visibility then call
component.setVisibilityAllowed(). Wicket ands this bit with the visible bit to determine final visibility; this way the cross-cutting concern won’t dirty component’s visibility attribute.
If all of these fail, as a last resort override component.isVisible() but be warned that this has a few pitfalls:
- it is called multiple times per request, potentially tens of times, so keep the implementation computationally light
- this value should remain stable across the render/respond boundary. Meaning if isVisible() returns true when rendering a button, but when the button is clicked returns false you will get an error