vote up 1 vote down star

Hi, Is there a way in JSF to output some text based on a boolean? For example: h:outputText value="Black" rendered="#{bean.isBlack}"

The bean property is called isBlack not getIsBlack...I dont want to rename this.

Thanks, D

flag

0% accept rate

1 Answer

vote up 2 vote down

The expression #{bean.black} should do it.

The Unified Expression Language can resolve properties using JavaBean conventions (see BeanELResolver). The UEL spec is currently maintained as part of the JSP spec.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.