From jira-events at lists.jboss.org Wed Nov 30 05:07:40 2011 Content-Type: multipart/mixed; boundary="===============1233687338372009671==" MIME-Version: 1.0 From: Sascha Buchner (Updated) (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11754) a4j:repeat problem with bean changes in requestscope since 4.1.0.-CR1 Date: Wed, 30 Nov 2011 05:07:40 -0500 Message-ID: <1508195459.53711.1322647660704.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 887203726.53693.1322647180812.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1233687338372009671== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11754?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Sascha Buchner updated RF-11754: -------------------------------- Environment: Mojarra 2.1.3, Java 1.6.0.26, Tomcat 6.20 (was: Mojarra 2= .1.3, Java 1.7.0.26, Tomcat 6.20) = > a4j:repeat problem with bean changes in requestscope since 4.1.0.-CR1 > --------------------------------------------------------------------- > > Key: RF-11754 > URL: https://issues.jboss.org/browse/RF-11754 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.1.0.CR1 > Environment: Mojarra 2.1.3, Java 1.6.0.26, Tomcat 6.20 > Reporter: Sascha Buchner > > a4j:repeat doe not render correctly anymore, was working with 4.1.0.20111= 101-M4 > After clicking the link it should display some numbers. > View: > > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:c=3D"http://java.sun.com/jsp/jstl/core" > xmlns:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich" > > > > > > > action=3D"#{a4jRepeatBacking.startAction}" render=3D"listtable" /> >
>
> > rowKeyVar=3D"row"> > - = > > >
>
>
> > Backing: > import java.util.ArrayList; > import javax.faces.bean.ManagedBean; > import javax.faces.bean.RequestScoped; > @RequestScoped > @ManagedBean > public class A4jRepeatBacking > { > private ArrayList count; > public A4jRepeatBacking() > { > super(); > } > public String startAction() > { > count =3D new ArrayList(); > for (long i =3D 1; i < 4; i++) > { > count.add(i); > } > return null; > } > public ArrayList getCount() > { > return count; > } > } -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs: https://issues.jboss.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1233687338372009671==--