0 Replies Latest reply on Jul 9, 2009 10:51 AM by anil3379

    <h:column> level rendering is is not working in jboss

    anil3379

      <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.