From richfaces-svn-commits at lists.jboss.org Tue Mar 15 13:29:41 2011 Content-Type: multipart/mixed; boundary="===============6220221147093334848==" MIME-Version: 1.0 From: richfaces-svn-commits at lists.jboss.org To: richfaces-svn-commits at lists.jboss.org Subject: [richfaces-svn-commits] JBoss Rich Faces SVN: r22227 - in modules/tests/metamer/trunk/application/src/main: webapp/components/richPopupPanel and 1 other directory. Date: Tue, 15 Mar 2011 13:29:41 -0400 Message-ID: <201103151729.p2FHTfNx017501@svn01.web.mwc.hst.phx2.redhat.com> --===============6220221147093334848== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Author: ppitonak(a)redhat.com Date: 2011-03-15 13:29:41 -0400 (Tue, 15 Mar 2011) New Revision: 22227 Added: modules/tests/metamer/trunk/application/src/main/webapp/components/richP= opupPanel/formInsidePanel.xhtml Modified: modules/tests/metamer/trunk/application/src/main/java/org/richfaces/test= s/metamer/bean/RichPopupPanelBean.java Log: added sample with a form inside popup panel Modified: modules/tests/metamer/trunk/application/src/main/java/org/richfac= es/tests/metamer/bean/RichPopupPanelBean.java =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- modules/tests/metamer/trunk/application/src/main/java/org/richfaces/tes= ts/metamer/bean/RichPopupPanelBean.java 2011-03-15 16:02:57 UTC (rev 22226) +++ modules/tests/metamer/trunk/application/src/main/java/org/richfaces/tes= ts/metamer/bean/RichPopupPanelBean.java 2011-03-15 17:29:41 UTC (rev 22227) @@ -45,6 +45,9 @@ private static final long serialVersionUID =3D -1L; private static Logger logger; private Attributes attributes; + private String value1; + private String value2; + private String value3; = /** * Initializes the managed bean. @@ -78,4 +81,35 @@ public void setAttributes(Attributes attributes) { this.attributes =3D attributes; } + + public String getValue1() { + return value1; + } + + public void setValue1(String value1) { + this.value1 =3D value1; + } + + public String getValue2() { + return value2; + } + + public void setValue2(String value2) { + this.value2 =3D value2; + } + + public String getValue3() { + return value3; + } + + public void setValue3(String value3) { + this.value3 =3D value3; + } + + public String save() { + logger.warn("1: " + value1); + logger.warn("2: " + value2); + logger.warn("3: " + value3); + return null; + } } Added: modules/tests/metamer/trunk/application/src/main/webapp/components/r= ichPopupPanel/formInsidePanel.xhtml =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- modules/tests/metamer/trunk/application/src/main/webapp/components/rich= PopupPanel/formInsidePanel.xhtml (rev 0) +++ modules/tests/metamer/trunk/application/src/main/webapp/components/rich= PopupPanel/formInsidePanel.xhtml 2011-03-15 17:29:41 UTC (rev 22227) @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + input1 + +

+ + + + + + + + X + + + + input2 + input3 + + + + + + + output1 + output2 + output3 + + +
+ + + + +
+ \ No newline at end of file --===============6220221147093334848==--