[richfaces-issues] [JBoss JIRA] Created: (RF-1118) Scrollable Table: reRendering issue
Ilya Shaikovsky (JIRA)
jira-events at lists.jboss.org
Mon Oct 15 08:09:03 EDT 2007
Scrollable Table: reRendering issue
-----------------------------------
Key: RF-1118
URL: http://jira.jboss.com/jira/browse/RF-1118
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.0
Reporter: Ilya Shaikovsky
Assigned To: Konstantin Mishin
Fix For: 3.2.0
<h:form>
<rich:scrollableDataTable value="#{capitalsBean.capitals}" var="cap" width="200px" height="250px" id="table">
<f:facet name="header">
<h:outputText value="Table Header"></h:outputText>
</f:facet>
<rich:column>
<f:facet name="header">
<h:outputText value="Column header 1"></h:outputText>
</f:facet>
<h:outputText value="#{cap.name}"/>
</rich:column>
<rich:column>
<f:facet name="header">
<h:outputText value="Column header 2"></h:outputText>
</f:facet>
<h:outputText value="#{cap.state}"/>
</rich:column>
<f:facet name="footer">
<h:outputText value="Table footer"></h:outputText>
</f:facet>
</rich:scrollableDataTable>
<rich:panel>
<a4j:commandButton value="add capital ajax" action="#{capitalsBean.addFakeCapital}" reRender="table"/>
<h:commandButton value="add capital common" action="#{capitalsBean.addFakeCapital}"/>
</rich:panel>
</h:form>
After reRendering with both buttons - table broken(no scrolling, some content lost) if the scroll position was changed before submit.
Can't reproduce but cusomer alos reports about missing headers after ajax reRendering.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the richfaces-issues
mailing list