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

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Mon Jun 15 10:50:24 EDT 2009


Author: ochikvina
Date: 2009-06-15 10:50:24 -0400 (Mon, 15 Jun 2009)
New Revision: 14619

Modified:
   branches/community/3.3.X/ui/dataTable/src/main/config/component/colgroup.xml
   branches/community/3.3.X/ui/dataTable/src/main/config/component/columnAttributes.ent
   branches/community/3.3.X/ui/dataTable/src/main/config/component/dataGrid.xml
   branches/community/3.3.X/ui/dataTable/src/main/config/component/dataTable.xml
Log:
https://jira.jboss.org/jira/browse/RF-6233 - unification of style attributes descriptions;

Modified: branches/community/3.3.X/ui/dataTable/src/main/config/component/colgroup.xml
===================================================================
--- branches/community/3.3.X/ui/dataTable/src/main/config/component/colgroup.xml	2009-06-15 14:48:33 UTC (rev 14618)
+++ branches/community/3.3.X/ui/dataTable/src/main/config/component/colgroup.xml	2009-06-15 14:50:24 UTC (rev 14619)
@@ -42,16 +42,20 @@
 			<name>columnClasses</name>
 			<classname>java.lang.String</classname>
 			<description>
-				Comma-delimited list of CSS style classes that are be applied to the columns of this table.
-				A space separated list of classes may also be specified for any individual column.
-				If the number of elements in this list is less than the number of columns specified in the "columns" attribute, no "class" attribute is output for each column greater than the number of elements in the list. If the number of elements in the list is greater than the number of columns specified in the "columns" attribute, the elements at the position in the list after the value of the "columns" attribute are ignored
+				Assigns one or more space-separated CSS class names to the columns of the table. If the CSS class names are comma-separated, 
+				each class will be assigned to a particular column in the order they follow in the attribute. If you have less class names than columns, 
+				the class will be applied to every n-fold column where n is the order in which the class is listed in the attribute. 
+				If there are more class names than columns, the overflow ones are ignored.
 			</description>
 		</property>
 		<property>
 			<name>rowClasses</name>
 			<classname>java.lang.String</classname>
 			<description>
-				A comma-delimited list of CSS style classes that is applied to popup table rows. A space separated list of classes may also be specified for any individual row. The styles are applied, in turn, to each row in the table. For example, if the list has two elements, the first style class in the list is applied to the first row, the second to the second row, the first to the third row, the second to the fourth row, etc. In other words, we keep iterating through the list until we reach the end, and then we start at the beginning again
+				Assigns one or more space-separated CSS class names to the rows of the table. If the CSS class names are comma-separated, 
+				each class will be assigned to a particular row in the order they follow in the attribute. If you have less class names than rows, 
+				the class will be applied to every n-fold row where n is the order in which the class is listed in the attribute. If there are more class names than rows, 
+				the overflow ones are ignored.
 			</description>
 		</property>
 		<property disabled="false" hidden="true">

Modified: branches/community/3.3.X/ui/dataTable/src/main/config/component/columnAttributes.ent
===================================================================
--- branches/community/3.3.X/ui/dataTable/src/main/config/component/columnAttributes.ent	2009-06-15 14:48:33 UTC (rev 14618)
+++ branches/community/3.3.X/ui/dataTable/src/main/config/component/columnAttributes.ent	2009-06-15 14:50:24 UTC (rev 14619)
@@ -25,13 +25,13 @@
 <property>
 	<name>headerClass</name>
 	<classname>java.lang.String</classname>
-	<description>Space-separated list of CSS style class(es) that are be applied to any header generated for this table</description>
+	<description>Assigns one or more space-separated CSS class names to any header generated for this component</description>
 	<defaultvalue>""</defaultvalue>
 </property>
 <property>
 	<name>footerClass</name>
 	<classname>java.lang.String</classname>
-	<description>Space-separated list of CSS style class(es) that are be applied to any footer generated for this table</description>
+	<description>Assigns one or more space-separated CSS class names to any footer generated for this component</description>
 	<defaultvalue>""</defaultvalue>
 </property>
 <property>

Modified: branches/community/3.3.X/ui/dataTable/src/main/config/component/dataGrid.xml
===================================================================
--- branches/community/3.3.X/ui/dataTable/src/main/config/component/dataGrid.xml	2009-06-15 14:48:33 UTC (rev 14618)
+++ branches/community/3.3.X/ui/dataTable/src/main/config/component/dataGrid.xml	2009-06-15 14:50:24 UTC (rev 14619)
@@ -92,25 +92,25 @@
 		<property>
 			<name>captionClass</name>
 			<classname>java.lang.String</classname>
-			<description>Space-separated list of CSS style class(es) that are be applied to caption for this component</description>
+			<description>Assigns one or more space-separated CSS class names to the component caption</description>
 			<defaultvalue>""</defaultvalue>
 		</property>
 		<property>
 			<name>captionStyle</name>
 			<classname>java.lang.String</classname>
-			<description>CSS style(s) is/are to be applied to caption when this component is rendered</description>
+			<description>Holds a fragment of a style sheet that applies to the component caption</description>
 		</property>
 		<property>
 			<name>headerClass</name>
 			<classname>java.lang.String</classname>
-			<description>Space-separated list of CSS style class(es) that are be applied to header for this component
+			<description>Assigns one or more space-separated CSS class names to the component header 
 			</description>
 			<defaultvalue>""</defaultvalue>
 		</property>
 		<property>
 			<name>footerClass</name>
 			<classname>java.lang.String</classname>
-			<description>Space-separated list of CSS style class(es) that are be applied to footer for this component
+			<description>Assigns one or more space-separated CSS class names to the component footer
 			</description>
 			<defaultvalue>""</defaultvalue>
 		</property>

Modified: branches/community/3.3.X/ui/dataTable/src/main/config/component/dataTable.xml
===================================================================
--- branches/community/3.3.X/ui/dataTable/src/main/config/component/dataTable.xml	2009-06-15 14:48:33 UTC (rev 14618)
+++ branches/community/3.3.X/ui/dataTable/src/main/config/component/dataTable.xml	2009-06-15 14:50:24 UTC (rev 14619)
@@ -94,25 +94,25 @@
 		<property>
 			<name>captionClass</name>
 			<classname>java.lang.String</classname>
-			<description>Space-separated list of CSS style class(es) that are be applied to caption for this component</description>
+			<description>Assigns one or more space-separated CSS class names to the component caption</description>
 			<defaultvalue>""</defaultvalue>
 		</property>
 		<property>
 			<name>captionStyle</name>
 			<classname>java.lang.String</classname>
-			<description>CSS style(s) is/are to be applied to caption when this component is rendered</description>
+			<description>Holds a fragment of a style sheet that applies to the component caption</description>
 		</property>
 		<property>
 			<name>headerClass</name>
 			<classname>java.lang.String</classname>
-			<description>Space-separated list of CSS style class(es) that are be applied to header for this component
+			<description>Assigns one or more space-separated CSS class names to the component header 
 			</description>
 			<defaultvalue>""</defaultvalue>
 		</property>
 		<property>
 			<name>footerClass</name>
 			<classname>java.lang.String</classname>
-			<description>Space-separated list of CSS style class(es) that are be applied to footer for this component
+			<description>Assigns one or more space-separated CSS class names to the component footer
 			</description>
 			<defaultvalue>""</defaultvalue>
 		</property>




More information about the richfaces-svn-commits mailing list