Disabled components
hello,
in order to disabled a component i have to write something like-
<h:commandButton value="ok" disabled="#{myBean.okDisabled}"/>
should the bean "myBean" contain the method
public boolean isOkDisabled() {...}
or
public boolean getOkDisabled() {...}
?
thanks in advanced.

