extendedDataTable doesn't dsplay properly if height attribute is missing
"px"
-----------------------------------------------------------------------------
Key: RF-8091
URL:
https://jira.jboss.org/jira/browse/RF-8091
Project: RichFaces
Issue Type: Bug
Components: component-tables
Affects Versions: 3.3.2.SR1
Environment: JSF 1.2, Seam 2.2
Reporter: Matthew Lieder
If the height of the extendedDataTable component is set to just a number it doesn't
display properly, but if the number is proceeded by "px" then it works great.
This displays just a one-pixel high line:
<rich:extendedDataTable value="#{testBean.values}" var="val"
height="300">
<rich:column>
<f:facet name="header">Value</f:facet>
<h:outputText value="#{val}" />
</rich:column>
</rich:extendedDataTable>
while the following works properly:
<rich:extendedDataTable value="#{testBean.values}" var="val"
height="300px">
<rich:column>
<f:facet name="header">Value</f:facet>
<h:outputText value="#{val}" />
</rich:column>
</rich:extendedDataTable>
--
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