I've made a property named "loaded" (boolean type, with set/is methods), and the result was the same: the button rendered as I expected (rendered when the loaded is true, not rendered when it is false), but a click on the button has no effect, the referenced method in the backing bean didn't invoked.
Matthias Wessendorf írta:
ok...
please test
private boolean shouldButtonBeVisible = false;
set / is method
and then use:
rendered="#{UserBean.shouldButtonBeVisible}"
-- Csík Norbert

