<h:dataTable value="#{HeaderBean.records}" var="screenConfig">
<h:column>
<h:outputText value="#{screenConfig.displayTitle}" rendered="#{'5' eq '5'}"> </h:outputText>
</h:column>
</h:dataTable>
this is working fine in jboss as well as Glassfish.
where as <h:dataTable value="#{HeaderBean.records}" var="screenConfig">
<h:column rendered="#{'5' eq '5'}"> >
<h:outputText value="#{screenConfig.displayTitle}" </h:outputText>
</h:column>
</h:dataTable>
is not working.Please give me some suggestion on this.