<h:column> level rendering is not working in JBOSS
---------------------------------------------------
Key: JBAS-7089
URL:
https://jira.jboss.org/jira/browse/JBAS-7089
Project: JBoss Application Server
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: JSF
Affects Versions: JBossAS-5.1.0.GA
Environment: windows
Reporter: anil kumar
Assignee: Stan Silvert
<h:column> level rendering is not working in JBOSS but works in Glassfish.
<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 perfectly.
<h:dataTable value="#{HeaderBean.records}" var="screenConfig">
<h:column rendered="#{'5' eq '5'}"> >
<h:outputText value="#{screenConfig.displayTitle}"
</h:outputText>
</h:column>
</h:dataTable>
where as above one is not working. I really don't understand why this is not working
in JBOSS.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira