Author: yradtsevich
Date: 2008-12-19 10:46:27 -0500 (Fri, 19 Dec 2008)
New Revision: 12722
Modified:
trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/resources/richFacesTest/WebContent/pages/components/scrollableDataTable.xhtml
Log:
CODING IN PROGRESS - issue JBIDE-3431: rich:scrollableDataTable does not render h:column
properly in VPE
https://jira.jboss.org/jira/browse/JBIDE-3431
The test of scrollableDataTable has been updated.
Modified:
trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/resources/richFacesTest/WebContent/pages/components/scrollableDataTable.xhtml
===================================================================
---
trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/resources/richFacesTest/WebContent/pages/components/scrollableDataTable.xhtml 2008-12-19
15:39:41 UTC (rev 12721)
+++
trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/resources/richFacesTest/WebContent/pages/components/scrollableDataTable.xhtml 2008-12-19
15:46:27 UTC (rev 12722)
@@ -11,14 +11,9 @@
<body>
<f:view>
-<rich:scrollableDataTable id="scrollableDataTable" rowKeyVar="rkv"
frozenColCount="1"
- height="100" width="500" id="carList"
rows="40"
- columnClasses="col" value="#{dataTableScrollerBean.allCars}"
- var="category" sortMode="single"
- binding="#{dataTableScrollerBean.table}"
- sortOrder="#{dataTableScrollerBean.order}"
- selection="#{dataTableScrollerBean.selection}">
+<rich:scrollableDataTable id="scrollableDataTable" rowKeyVar="rkv"
frozenColCount="1" height="100" width="500"
id="carList" rows="40" columnClasses="col"
value="#{dataTableScrollerBean.allCars}" var="category"
sortMode="single" binding="#{dataTableScrollerBean.table}"
sortOrder="#{dataTableScrollerBean.order}"
selection="#{dataTableScrollerBean.selection}">
+
<rich:column id="make">
<f:facet name="header">
<h:outputText styleClass="headerText" value="Make"
/>
@@ -49,13 +44,12 @@
</f:facet>
<h:outputText value="#{category.vin}" />
</rich:column>
- <rich:column id="stock">
+ <h:column id="stock">
<f:facet name="header">
<h:outputText styleClass="headerText"
value="Stock" />
</f:facet>
<h:outputText value="#{category.stock}" />
- </rich:column>
- </rich:scrollableDataTable>
-</f:view>
+ </h:column>
+ </rich:scrollableDataTable></f:view>
</body>
</html>
\ No newline at end of file