You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lu...@apache.org on 2010/05/13 00:29:29 UTC

svn commit: r943724 - /myfaces/tomahawk/trunk/examples/simple/src/main/webapp/subForm.jsp

Author: lu4242
Date: Wed May 12 22:29:28 2010
New Revision: 943724

URL: http://svn.apache.org/viewvc?rev=943724&view=rev
Log:
fix IE 7 bug

Modified:
    myfaces/tomahawk/trunk/examples/simple/src/main/webapp/subForm.jsp

Modified: myfaces/tomahawk/trunk/examples/simple/src/main/webapp/subForm.jsp
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/examples/simple/src/main/webapp/subForm.jsp?rev=943724&r1=943723&r2=943724&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/examples/simple/src/main/webapp/subForm.jsp (original)
+++ myfaces/tomahawk/trunk/examples/simple/src/main/webapp/subForm.jsp Wed May 12 22:29:28 2010
@@ -43,7 +43,8 @@
                     <h:outputLabel for="lastName" value="Last name:"/>
                     <h:inputText id="lastName" value="#{subFormBean.lastName}" required="true"/>
                     <h:outputText value="Partial condition"/>
-                    <h:selectBooleanCheckbox value="false"                                              
+                    <h:selectBooleanCheckbox value="false"
+                                             onclick="this.blur();"
                                              onchange="personForm_submit();"/>                   
                 </h:panelGrid>
                 <h:commandButton value="Show current values of Person"/>
@@ -57,7 +58,8 @@
                     <h:outputLabel for="lastName" value="Make:"/>
                     <h:inputText id="lastName" value="#{subFormBean.make}" required="true"/>
                     <h:outputText value="Partial condition"/>
-                    <h:selectBooleanCheckbox value="false"                                              
+                    <h:selectBooleanCheckbox value="false"
+                                             onclick="this.blur();"
                                              onchange="vehicleForm_submit();"/>  
                 </h:panelGrid>
                 <h:commandButton value="Show current values of Vehicle"/>