From jira-events at lists.jboss.org Tue Apr 20 08:58:49 2010 Content-Type: multipart/mixed; boundary="===============3237698738988840560==" MIME-Version: 1.0 From: Mirko Sciachero (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-8603) Datascroller The requested page #2 isn't found in the model containing 1 pages. Paging is reset to page #1 Date: Tue, 20 Apr 2010 08:58:49 -0400 Message-ID: <1514744146.1271768329527.JavaMail.jboss@jira01.app.mwc.hst.phx2.redhat.com> --===============3237698738988840560== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Datascroller The requested page #2 isn't found in the model containing 1 p= ages. Paging is reset to page #1 ---------------------------------------------------------------------------= -------------------------------- Key: RF-8603 URL: https://jira.jboss.org/jira/browse/RF-8603 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-tables Affects Versions: 3.3.3.Final Environment: Oracle Weblogic 10.3.2, Linux 64bit = Reporter: Mirko Sciachero Priority: Critical I have the following code: = = = = = called by the following fragment: = = = = that display a set of table paginated using . When I select the next page nothing will change, the data returned by Ajax = Request are the fist page and in the log I found the following WARN: "Datascroller generalfrm:j_id163:j_id176: The requested page #2 isn't found= in the model containing 1 pages. Paging is reset to page #1" Seems that the data table "forget" the list of values and reread all The variable:#{componentDataTable.componentDecoratorList} is a list of obje= ct that represent a line in the table. ComponentDataTable is an object that represent the entire table. -- = This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: htt= ps://jira.jboss.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3237698738988840560==-- From jira-events at lists.jboss.org Wed Apr 21 07:42:11 2010 Content-Type: multipart/mixed; boundary="===============5307099912584020356==" MIME-Version: 1.0 From: Nick Belaevski (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Resolved: (RF-8603) Datascroller The requested page #2 isn't found in the model containing 1 pages. Paging is reset to page #1 Date: Wed, 21 Apr 2010 07:42:11 -0400 Message-ID: <912691133.1271850131577.JavaMail.jboss@jira01.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1514744146.1271768329527.JavaMail.jboss@jira01.app.mwc.hst.phx2.redhat.com --===============5307099912584020356== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://jira.jboss.org/jira/browse/RF-8603?page=3Dcom.atlassian.jira= .plugin.system.issuetabpanels:all-tabpanel ] Nick Belaevski resolved RF-8603. -------------------------------- Resolution: Duplicate Issue Assignee: Nick Belaevski > Datascroller The requested page #2 isn't found in the model containing 1= pages. Paging is reset to page #1 > -------------------------------------------------------------------------= ---------------------------------- > > Key: RF-8603 > URL: https://jira.jboss.org/jira/browse/RF-8603 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 3.3.3.Final > Environment: Oracle Weblogic 10.3.2, Linux 64bit = > Reporter: Mirko Sciachero > Assignee: Nick Belaevski > Priority: Critical > > I have the following code: > > xmlns:h=3D"http://java.sun.com/jsf/html" xmlns:i4c=3D"http://i4c.com/jsf= /components" xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich" xmlns:fn=3D"http://java.sun.com= /jsp/jstl/functions"> > > = > headerClass=3D"edRelationSimpleTogglePanelHeader" styleClass=3D"edRelat= ionSimpleTogglePanel" style=3D"width:100%" id=3D"componentToggle" > > var=3D"componentDecorator" rows=3D"1" footerClass=3D"" id=3D"component= Table" rowClasses=3D"odd,even" > > = > > > immediate=3D"true" reRender=3D"componentActionPanel,componentTable"= > > > > > > > filterBy=3D"#{componentDecorator.idCharacter}" filterEvent= =3D"onkeyup"> > > > > > > filterBy=3D"#{componentDecorator.versionedName}" filterEven= t=3D"onkeyup"> > > > > > > filterBy=3D"#{componentDecorator.description}" filterEvent= =3D"onkeyup" > > > > > > > = > > > > = > > action=3D"#{componentInstances.modifyInstance}" > > > > > disabled=3D"#{componentDataTable.cloneDisabled}" action=3D"#{componen= tInstances.duplicateInstance}" > = > > > > action=3D"#{componentInstances.deleteInstances}"> > > > > action=3D"#{componentInstances.createInstance}" > > > > > > > > called by the following fragment: > > xmlns:h=3D"http://java.sun.com/jsf/html" xmlns:i4c=3D"http://i4c.com/jsf= /components" xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich"> > > label=3D"#{lang.lbl_toggle_comp}" switchType=3D"ajax" ajaxSingle=3D"t= rue" eventsQueue=3D"componetsPGQueue" > headerClass=3D"edMainGroupSimpleTogglePanelHeader" > onexpand=3D"this.children[1].innerText =3D '#{lang.lbl_toggle_comp} l= oading...';" > styleClass=3D"componentRelationsInstancesDetails" reRender=3D"compone= tsPG" > action=3D"#{entityPageMB.entityDetailsMB.componentInstances.togglePan= el}" > rendered=3D"#{!empty entityPageMB.entityDetailsMB.componentInstances.= compTypeDecoratorList and (entityPageMB.entityDetailsMB.entityInstanceType.= mainInstance or entityPageMB.entityDetailsMB.entityInstanceType.componentIn= stance or entityPageMB.entityDetailsMB.entityInstanceType.relationInstance)= }"> = > = > > > > = > > > > > = > > > > > > > > that display a set of table paginated using . > When I select the next page nothing will change, the data returned by Aja= x Request are the fist page and in the log I found the following WARN: > "Datascroller generalfrm:j_id163:j_id176: The requested page #2 isn't fou= nd in the model containing 1 pages. Paging is reset to page #1" > Seems that the data table "forget" the list of values and reread all > The variable:#{componentDataTable.componentDecoratorList} is a list of ob= ject that represent a line in the table. > ComponentDataTable is an object that represent the entire table. -- = This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: htt= ps://jira.jboss.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5307099912584020356==--