[richfaces-issues] [JBoss JIRA] Commented: (RF-6002) no header visible in rich:scrollableDataTable
Alexander Dubovsky (JIRA)
jira-events at lists.jboss.org
Thu Feb 26 09:42:45 EST 2009
[ https://jira.jboss.org/jira/browse/RF-6002?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12454503#action_12454503 ]
Alexander Dubovsky commented on RF-6002:
----------------------------------------
The problem is reproducible only under Safari for me (3.3.1.SNAPSHOT)
Headers are not rendered during the first rendering.
<rich:scrollableDataTable id="scr1" value="#{sdTable.value}"
var="val1" width="300" height="400">
<rich:column>
<f:facet name="header">
<h:outputText value="MAKE" />
</f:facet>
<h:outputText value="#{val1.make}" />
</rich:column>
<rich:column>
<f:facet name="header">
<h:outputText value="MODEL" />
</f:facet>
<h:outputText value="#{val1.model}" />
</rich:column>
<rich:column>
<f:facet name="header">
<h:outputText value="PRICE" />
</f:facet>
<h:outputText value="#{val1.price}" />
</rich:column>
</rich:scrollableDataTable>
> no header visible in rich:scrollableDataTable
> ---------------------------------------------
>
> Key: RF-6002
> URL: https://jira.jboss.org/jira/browse/RF-6002
> Project: RichFaces
> Issue Type: Bug
> Affects Versions: 3.3.0
> Environment: RichFaces 3.3.0, JSF 1.2, Facelets, Mozilla 3.0.5
> Reporter: nimo stephan
> Assignee: Konstantin Mishin
> Fix For: Future
>
>
> I use Firefox 3.0.5 , RichFaces 3.3.0 and no headers are rendered for rich:scrollableDataTable.
> I guess, it is a browser-specific problem as for example in Internet Explorer all headers are visible by using for example common code:
> <rich:scrollableDataTable value="#{allSubjects}" var="s" >
>
> <rich:column>
> <f:facet name="header">
> <h:outputLabel value="name"/>
> </f:facet>
> <h:outputText value ="#{s.name}"/>
> </rich:column>
> <rich:column >
> <f:facet name="header">
> <h:outputLabel value="age"/>
> </f:facet>
> <h:outputText value ="#{s.age}"/>
> </rich:column>
> </rich:scrollableDataTable>
> You can verifiy this issue by using a rich:scrollableDataTable with Firefox v. 3.0.5.
--
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
More information about the richfaces-issues
mailing list