[JBoss JIRA] Created: (RF-989) scrollableDataTable broken header
by Krasimir Goutcev (JIRA)
scrollableDataTable broken header
---------------------------------
Key: RF-989
URL: http://jira.jboss.com/jira/browse/RF-989
Project: RichFaces
Issue Type: Bug
Environment: RF 3.1.0
JSF 1.2
Reporter: Krasimir Goutcev
this is my simple test:
<rich:scrollableDataTable id="testSDT"
var="formRow" sortMode="single" value="#{testBean.proba}" rows="5" height="250px">
<rich:column id="formCode">
<f:facet name="header">
<h:outputText styleClass="headerText" value="MyHead" />
</f:facet>
<h:commandLink action="goToPage2"
style="DISPLAY: block; width: 100%">
link
</h:commandLink>
</rich:column>
</rich:scrollableDataTable>
<a4j:commandButton reRender="testSDT"/>
As you can see i have just 1 simple table and 1 buttot. When you click button datle must be reRenderd. after that - header is gone away.
See attached files:
--
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
16 years, 8 months
[JBoss JIRA] Created: (RF-1118) Scrollable Table: reRendering issue
by Ilya Shaikovsky (JIRA)
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
16 years, 8 months