You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@myfaces.apache.org by Elam Daly <el...@gmail.com> on 2005/11/21 16:47:36 UTC

Rendered Property: Simple Test

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;

}
}