[richfaces-issues] [JBoss JIRA] Created: (RF-3968) dataScroller does not work if it was defined using "for" attribute in Seam.

Alexander Dubovsky (JIRA) jira-events at lists.jboss.org
Mon Jul 21 10:06:32 EDT 2008


dataScroller does not work if it was defined using "for" attribute in Seam.
---------------------------------------------------------------------------

                 Key: RF-3968
                 URL: https://jira.jboss.org/jira/browse/RF-3968
             Project: RichFaces
          Issue Type: Bug
    Affects Versions: 3.2.2
         Environment: Seam 2.0.1.GA
RichFaces 3.2.2.BETA1
            Reporter: Alexander Dubovsky
            Assignee: Nick Belaevski


DataScroller which defined using "for" attribute does not work, but DataScroller from "footer" facet works fine.

Source code:

<h:form>
    <rich:panel>
        <rich:dataTable id="table1" rows="1" value="#{target.children}"    var="child">
            <rich:column>
                <rich:dataGrid id="dataGrid2" columns="5" elements="10" var="DayElement" value="#{child.elements}" title="#{child.name}">
                    <rich:panel>
                        #{DayElement.label}
                    </rich:panel>
                    <rich:panel>
                        <h:selectBooleanCheckbox value="#{DayElement.value}" disabled="#{!target.enableTarget.value}" />
                    </rich:panel>
                    <f:facet name="footer">
                        <rich:datascroller></rich:datascroller>
                    </f:facet>
                </rich:dataGrid>
            </rich:column>
        </rich:dataTable>
        <rich:datascroller for="table1"></rich:datascroller>
    </rich:panel>
    </h:form>

-- 
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

        



More information about the richfaces-issues mailing list