[
https://issues.jboss.org/browse/RF-11141?page=com.atlassian.jira.plugin.s...
]
Pavol Pitonak reassigned RF-11141:
----------------------------------
Assignee: Jay Balunas (was: Jan Papousek)
Jay,
I think that the sample behaves correctly, i.e. it's a bug in application design, not
in RichFaces component. h:dataTable doesn't render anything which makes sense
(column's header cannot be visible if column is not visible).
rich:column header does't display when it has a rendered
condition.
-------------------------------------------------------------------
Key: RF-11141
URL:
https://issues.jboss.org/browse/RF-11141
Project: RichFaces
Issue Type: Bug
Security Level: Public(Everyone can see)
Components: component-tables
Affects Versions: 4.0.0.Final
Reporter: Abdulkerim İnanmış
Assignee: Jay Balunas
I am using richfaces 4 and jsf 2. My datatable column header does't display when I
give a rendered condition as below.
My code part is below.
<rich:dataTable value="#{myBean.gelenIstekler}"
var="istek">
<rich:column
rendered="#{istek.durum=='BEKLEMEDE'}">
<f:facet name="header">Yanıt</f:facet>
<h:commandLink value="Evet"
action="#{myBean.setEvet(istek)}">
<f:ajax render="@form"></f:ajax>
</h:commandLink>
<h:commandLink value="Hayır"
action="#{myBean.setHayir(istek)}"
style="margin-left:5px;">
<f:ajax render="@form"></f:ajax>
</h:commandLink>
</rich:column>
</rich:dataTable>
--
This message is automatically generated by JIRA.
For more information on JIRA, see:
http://www.atlassian.com/software/jira