From jira-events at lists.jboss.org Tue Feb 3 06:21:57 2009 Content-Type: multipart/mixed; boundary="===============2202574721410030493==" MIME-Version: 1.0 From: Aimar Tellitu (JIRA) To: richfaces-issues at lists.jboss.org Subject: =?utf-8?q?=5Brichfaces-issues=5D_=5BJBoss_JIRA=5D_Created=3A_=28RF-6008?= =?utf-8?q?=29_reRender_doesn=C2=B4t_work_after_submitting_a_form_with_a_r?= =?utf-8?q?equired=3D=22true=22_empty_inputText?= Date: Tue, 03 Feb 2009 06:21:47 -0500 Message-ID: <15529225.1233660107279.JavaMail.jira@cloud.prod.atl2.jboss.com> --===============2202574721410030493== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable reRender doesn=C2=B4t work after submitting a form with a required=3D"true"= 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 The first time that the page is loaded it works fine. If you change the val= ue of id=3D"text1" inputText, the value of id=3D"text3" inputText is update= d. But after clicking the commandButton "Test" (with id=3D"text2" empty), the = reRender of the id=3D"text3" inputText doesn't work anymore. This is the code of the page home.xhtml: 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 = --===============2202574721410030493==--