[richfaces-svn-commits] JBoss Rich Faces SVN: r13974 - trunk/docs/userguide/en/src/main/docbook/included.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Thu Apr 30 12:52:05 EDT 2009


Author: msorokin
Date: 2009-04-30 12:52:05 -0400 (Thu, 30 Apr 2009)
New Revision: 13974

Modified:
   trunk/docs/userguide/en/src/main/docbook/included/columns.xml
Log:
https://jira.jboss.org/jira/browse/RF-6481
documented

Modified: trunk/docs/userguide/en/src/main/docbook/included/columns.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/columns.xml	2009-04-30 16:51:07 UTC (rev 13973)
+++ trunk/docs/userguide/en/src/main/docbook/included/columns.xml	2009-04-30 16:52:05 UTC (rev 13974)
@@ -105,7 +105,7 @@
                                         <property>&quot;columns&quot;</property>
                               </emphasis> attribute defines the count of columns. </para>
                     <para> The <emphasis>
-                                        <property>&quot;rowspan&quot;</property>
+                                 <property>&quot;rowspan&quot;</property>
                               </emphasis> attribute defines the number of rows to be displayed. If
                               the value of this attribute is zero, all remaining rows in the table
                               are displayed on a page. </para>
@@ -311,6 +311,22 @@
                     </note>
 
 
+<note><title>Note:</title>
+          <para>Since 3.3.0GA <emphasis role="bold"><property>&lt;rich:columns&gt;</property></emphasis> requires explicit definition of <emphasis><property>&quot;id&quot;</property></emphasis> for children components to ensure that  decode process works properly.
+                    The  example of how you can define unique <emphasis><property>&quot;id&quot;</property></emphasis> for children component: </para>
+           <programlisting role="XML"><![CDATA[...
+<rich:columns value="#{bean.columns}" var="col" index="ind" ....>
+<h:inputText id="input#{ind}" value="">
+<a4j:support id="support#{ind}" event="onchange" reRender="someId" />
+</h:inputText>
+</rich:columns> 
+...]]></programlisting> 
+          <para>Only if <emphasis><property>&quot;id&quot;</property></emphasis> defined as shown above Ajax after onchange event will be processed as expected. </para>      
+
+</note>
+
+
+
                     <para> Information about sorting and filtering you can find <link
                                         linkend="sortAndFilter"> in the corresponding section</link> . </para>
 




More information about the richfaces-svn-commits mailing list