[richfaces-svn-commits] JBoss Rich Faces SVN: r14422 - branches/community/3.3.X/ui/inplaceInput/src/main/config/component.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Mon Jun 1 11:00:48 EDT 2009


Author: ochikvina
Date: 2009-06-01 11:00:48 -0400 (Mon, 01 Jun 2009)
New Revision: 14422

Modified:
   branches/community/3.3.X/ui/inplaceInput/src/main/config/component/inplaceinput.xml
Log:
https://jira.jboss.org/jira/browse/RF-6233 - unification of event handlers descriptions;

Modified: branches/community/3.3.X/ui/inplaceInput/src/main/config/component/inplaceinput.xml
===================================================================
--- branches/community/3.3.X/ui/inplaceInput/src/main/config/component/inplaceinput.xml	2009-06-01 14:03:38 UTC (rev 14421)
+++ branches/community/3.3.X/ui/inplaceInput/src/main/config/component/inplaceinput.xml	2009-06-01 15:00:48 UTC (rev 14422)
@@ -95,22 +95,22 @@
 		  	<property>
 		  		<name>oneditactivation</name>
 		  		<classname>java.lang.String</classname>
-		  		<description>Provides a possibility to assign JavaScript on edit state activation</description>
+		  		<description>The client side script method to be called before the component edit state is activated</description>
 		  	</property>
 		  	<property>
 		  		<name>onviewactivation</name>
 		  		<classname>java.lang.String</classname>
-		  		<description>Provides a possibility  to assign JavaScript  on view state activation</description>
+		  		<description>The client side script method to be called before the component view state is activated</description>
 		  	</property>
 		  	<property>
 		  		<name>oneditactivated</name>
 		  		<classname>java.lang.String</classname>
-		  		<description>HTML: script expression; edit state is activated</description>
+		  		<description>The client side script method to be called when the component edit state is activated</description>
 		  	</property>
 		  	<property>
 		  		<name>onviewactivated</name>
 		  		<classname>java.lang.String</classname>
-		  		<description>HTML: script expression; view state is activated</description>
+		  		<description>The client side script method to be called when the component view state is activated</description>
 		  	</property>
 		  	<property>
 		  		<name>selectOnEdit</name>
@@ -182,73 +182,73 @@
 		  	<property>
 		  		<name>onchange</name>
 		  		<classname>java.lang.String</classname>
-		  		<description>HTML: script expression; the element value was changed</description>
+		  		<description>The client side script method to be called when the component value is changed</description>
 		  	</property>
 		  	
 		  	<property>
 		  		<name>onselect</name>
 		  		<classname>java.lang.String</classname>
-		  		<description>HTML: script expression; the onselect event occurs when you select some menu item</description>
+		  		<description>The client side script method to be called when some text is selected in the input field</description>
 		  	</property>
 		  	<property>
 		  		<name>onfocus</name>
 		  		<classname>java.lang.String</classname>
-		  		<description>HTML: script expression; the element got the focus</description>
+		  		<description>The client side script method to be called when the component gets the focus</description>
 		  	</property>
 		  	<property>
 		  		<name>onblur</name>
 		  		<classname>java.lang.String</classname>
-		  		<description>HTML: script expression; the element lost the focus</description>
+		  		<description>The client side script method to be called when the component loses the focus</description>
 		  	</property>
 		  	<property>
         		<name>oninputclick</name>
         		<classname>java.lang.String</classname>
-        		<description>HTML: a script expression; a pointer button is clicked</description>
+		  <description>The client side script method to be called when the input field is clicked</description>
         	</property>
     		<property>
         		<name>oninputdblclick</name>
         		<classname>java.lang.String</classname>
-        		<description>HTML: a script expression; a pointer button is double-clicked</description>
+    		<description>The client side script method to be called when the input field is double-clicked</description>
     		</property>
     		<property>
         		<name>oninputkeydown</name>
         		<classname>java.lang.String</classname>
-        		<description>HTML: a script expression; a key is pressed down</description>
+    		<description>The client side script method to be called when a key is pressed down in the input field</description>
     		</property>
     		<property>
         		<name>oninputkeypress</name>
         		<classname>java.lang.String</classname>
-        		<description>HTML: a script expression; a key is pressed and released</description>
+    		<description>The client side script method to be called when a key is pressed and released in the input field</description>
     		</property>
     		<property>
         		<name>oninputkeyup</name>
         		<classname>java.lang.String</classname>
-        		<description>HTML: a script expression; a key is released</description>
+    		<description>The client side script method to be called when a key is released in the input field</description>
     		</property>
     		<property>
         		<name>oninputmousedown</name>
         		<classname>java.lang.String</classname>
-        		<description>HTML: script expression; a pointer button is pressed down</description>
+    		<description>The client side script method to be called when a mouse button is pressed down in the input field</description>
     		</property>
     		<property>
         		<name>oninputmousemove</name>
         		<classname>java.lang.String</classname>
-        		<description>HTML: a script expression; a pointer is moved within</description>
+    		<description>The client side script method to be called when a pointer is moved within the input field</description>
     		</property>
     		<property>
         		<name>oninputmouseout</name>
         		<classname>java.lang.String</classname>
-        		<description>HTML: a script expression; a pointer is moved away</description>
+    		<description>The client side script method to be called when a pointer is moved away from the input field</description>
     		</property>
     		<property>
         		<name>oninputmouseover</name>
         		<classname>java.lang.String</classname>
-        		<description>HTML: a script expression; a pointer is moved onto</description>
+    		<description>The client side script method to be called when a pointer is moved onto the input field</description>
     		</property>
     		<property>
         		<name>oninputmouseup</name>
         		<classname>java.lang.String</classname>
-        		<description>HTML: script expression; a pointer button is released</description>
+    		<description>The client side script method to be called when a mouse button is released in the input field</description>
     		</property>
 			<property>
 				<name>label</name>




More information about the richfaces-svn-commits mailing list