[JBoss JIRA] Created: (RF-5636) dataTable: rowClasses evaluated wrong.
by Ilya Shaikovsky (JIRA)
dataTable: rowClasses evaluated wrong.
--------------------------------------
Key: RF-5636
URL: https://jira.jboss.org/jira/browse/RF-5636
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.0
Reporter: Ilya Shaikovsky
Assignee: Nick Belaevski
Attachments: screen1.jpg, screen2.jpg
see difference for screenshots.
screen 1)
<rich:dataTable width="483" id="carList" rows="10" columnClasses="col" rowClasses="#{category.price>40000?'exp':'chip'}"
value="#{dataTableScrollerBean.allCars}" var="category">
<h:column>
<h:outputText value="#{category.make}" />
</h:column>
<h:column>
<h:outputText value="#{category.model}" />
</h:column>
<h:column>
<h:outputText value="#{category.price}" />
</h:column>
<h:column>
<h:outputText value="#{category.mileage}" />
</h:column>
</rich:dataTable>
screen 2)
<h:dataTable width="483" id="carList" rows="10" columnClasses="col" rowClasses="#{category.price>40000?'exp':'chip'}"
value="#{dataTableScrollerBean.allCars}" var="category">
<h:column>
<h:outputText value="#{category.make}" />
</h:column>
<h:column>
<h:outputText value="#{category.model}" />
</h:column>
<h:column>
<h:outputText value="#{category.price}" />
</h:column>
<h:column>
<h:outputText value="#{category.mileage}" />
</h:column>
</h:dataTable>
--
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
16 years, 11 months
[JBoss JIRA] Created: (RF-6154) Browser memory heap is increased on each rerendering of table node.
by Andrei Markavtsov (JIRA)
Browser memory heap is increased on each rerendering of table node.
-------------------------------------------------------------------
Key: RF-6154
URL: https://jira.jboss.org/jira/browse/RF-6154
Project: RichFaces
Issue Type: Bug
Environment: RF 3.30. SNAPSHOT
Reporter: Andrei Markavtsov
Assignee: Nick Belaevski
<h:form>
<a4j:outputPanel id="panel">
<rich:dataTable id="tb" value="#{test.rows}" var="row">
<rich:column>
<f:facet name="header">
<h:outputText value="Header"></h:outputText>
</f:facet>
<h:outputText value="#{row}"></h:outputText>
</rich:column>
</rich:dataTable>
</a4j:outputPanel>
<a4j:commandLink reRender="tb" value="ReRender table"></a4j:commandLink><br/>
<a4j:commandLink reRender="panel" value="ReRender panel"></a4j:commandLink>
</h:form>
1. Use sIEve tool for test.
2. Used nodes count is increased on each rerendering of datatable. (Browser heap space is increased also)
3. Used nodes count is not changed after rerendering of output panel.
--
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
16 years, 11 months