From jira-events at lists.jboss.org Fri Feb 20 11:23:59 2009 Content-Type: multipart/mixed; boundary="===============8581940944712591769==" MIME-Version: 1.0 From: Alexander Dubovsky (JIRA) To: richfaces-issues at lists.jboss.org Subject: =?utf-8?q?=5Brichfaces-issues=5D_=5BJBoss_JIRA=5D_Closed=3A_=28RF-6008=29?= =?utf-8?q?_reRender_doesn=C2=B4t_work_after_submitting_a_form_with_a_requ?= =?utf-8?q?ired=3D=22true=22_empty_inputText?= Date: Fri, 20 Feb 2009 11:23:59 -0500 Message-ID: <21539275.1235147039015.JavaMail.jira@cloud.prod.atl2.jboss.com> In-Reply-To: 15529225.1233660107279.JavaMail.jira@cloud.prod.atl2.jboss.com --===============8581940944712591769== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://jira.jboss.org/jira/browse/RF-6008?page=3Dcom.atlassian.jira= .plugin.system.issuetabpanels:all-tabpanel ] Alexander Dubovsky closed RF-6008. ---------------------------------- Assignee: Alexander Dubovsky (was: Ilya Shaikovsky) > reRender doesn=C2=B4t work after submitting a form with a required=3D"tru= e" empty inputText > -------------------------------------------------------------------------= ----------- > > Key: RF-6008 > URL: https://jira.jboss.org/jira/browse/RF-6008 > Project: RichFaces > Issue Type: Bug > Affects Versions: 3.3.0 > Environment: JDK 1.6.0_05, JBoss AS 4.2.1, Mojarra 1.2_04-b16-p02= , RichFaces 3.3.0.GA, Facelets 1.1.14 > Reporter: Aimar Tellitu > Assignee: Alexander Dubovsky > > The first time that the page is loaded it works fine. If you change the v= alue of id=3D"text1" inputText, the value of id=3D"text3" inputText is upda= ted. > But after clicking the commandButton "Test" (with id=3D"text2" empty), th= e reRender of the id=3D"text3" inputText doesn't work anymore. > This is the code of the page home.xhtml: > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:rich=3D"http://richfaces.org/rich" > xmlns:a4j=3D"http://richfaces.org/a4j"> > > > > > > event=3D"onchange" > ajaxSingle=3D"true" > reRender=3D"text3" > actionListener=3D"#{test.onText1Changed}" /> > > > > > > > > > > This is the definition of the managed bean test: > > test > > com.code.aon.ui.finance.controller.Test > > session > > This is the code of the com.code.aon.ui.finance.controller.Test class: > package com.code.aon.ui.finance.controller; > import javax.faces.event.ActionEvent; > public class Test { > private String text1; > = > private String text2; > = > private String text3; > public String getText1() { > return text1; > } > public void setText1(String text1) { > this.text1 =3D text1; > } > public String getText2() { > return text2; > } > public void setText2(String text2) { > this.text2 =3D text2; > } > public String getText3() { > return text3; > } > public void setText3(String text3) { > this.text3 =3D text3; > } > = > public void onText1Changed(ActionEvent event) { = > setText3( getText1() + "*" ); > } = > = > } -- = 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 = --===============8581940944712591769==--