Hello,
I have the following backing bean:
//not actual code
public class Foo { private boolean isBar; public Foo() {}; public boolean
isBar() {return this.isBar;} public void setBar(boolean isBar) {
this.isBar= isBar;} }
in my jsf I the following:
<h:commandLink disabled="#{foo.isBar}"/>
It is complaining because it can't find the property isBar...I have to
actually change my foo class to getIsBar() and setIsBar() then it work.
I'm new to JSF & MyFaces...am I missing something?
Thanks

