Howdy all,

I'm trying to do something very simple.  I have an <outputText> component set as so <outputText value="Here I am" rendered="#{TestBean.renderMe}" />

The TestBean is simple as well:

public class TestBean {

    int i = 0;

    public boolean renderMe() {
        if( i%2 == 0 ) return true;

    }
}

Reply via email to