[seam-commits] Seam SVN: r9297 - trunk/doc/Seam_Reference_Guide/en-US.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Tue Oct 14 08:10:54 EDT 2008
Author: pete.muir at jboss.org
Date: 2008-10-14 08:10:54 -0400 (Tue, 14 Oct 2008)
New Revision: 9297
Modified:
trunk/doc/Seam_Reference_Guide/en-US/Excel.xml
Log:
minor fixes
Modified: trunk/doc/Seam_Reference_Guide/en-US/Excel.xml
===================================================================
--- trunk/doc/Seam_Reference_Guide/en-US/Excel.xml 2008-10-14 11:55:54 UTC (rev 9296)
+++ trunk/doc/Seam_Reference_Guide/en-US/Excel.xml 2008-10-14 12:10:54 UTC (rev 9297)
@@ -43,24 +43,17 @@
API's has been made very easy. Implement the <literal>ExcelWorkbook
</literal> interface, and register in components.xml.
</para>
- <programlisting role="XML">
- <![CDATA[
- <excel:excelFactory>
- <property name="implementations">
- <key>myExcelExporter</key>
- <value>my.excel.exporter.ExcelExport</value>
- </property>
- </excel:excelFactory>
- ]]>
+ <programlisting role="XML"><![CDATA[<excel:excelFactory>
+ <property name="implementations">
+ <key>myExcelExporter</key>
+ <value>my.excel.exporter.ExcelExport</value>
+ </property>
+</excel:excelFactory>]]>
</programlisting>
<para>
and register the excel namespace in the components tag with
</para>
- <programlisting role="XML">
- <![CDATA[
- xmlns:excel="http://jboss.com/products/seam/excel"
- ]]>
- </programlisting>
+ <programlisting role="XML"><![CDATA[xmlns:excel="http://jboss.com/products/seam/excel"]]></programlisting>
<para>
Then set the UIWorkbook type to <literal>myExcelExporter</literal> and your
own exporter will be used. Default is "jxl", but support for CSV has also been
@@ -1122,40 +1115,56 @@
—The validation condition. The value is a
string.
<itemizedlist>
- <listitem>
- "equal" - requires the cell value to
- match the one defined in the
- value-attribute
+ <listitem>
+ <para>
+ "equal" - requires the cell value to
+ match the one defined in the
+ value-attribute
+ </para>
</listitem>
- <listitem>
- "greater_equal" - requires the cell value
- to be greater than or equal to the value
- defined in the value-attribute
+ <listitem>
+ <para>
+ "greater_equal" - requires the cell
+ value to be greater than or equal to
+ the value defined in the
+ value-attribute
+ </para>
</listitem>
- <listitem>
- "less_equal" - requires the cell value to
- be less than or equal to the value
- defined in the value-attribute
+ <listitem>
+ <para>
+ "less_equal" - requires the cell value
+ to be less than or equal to the value
+ defined in the value-attribute
+ </para>
</listitem>
- <listitem>
- "less_than" - requires the cell value to
- be less than the value defined in the
- value-attribute
+ <listitem>
+ <para>
+ "less_than" - requires the cell value
+ to be less than the value defined in
+ the value-attribute
+ </para>
</listitem>
- <listitem>
- "not_equal" - requires the cell value to
- not match the one defined in the
- value-attribute
+ <listitem>
+ <para>
+ "not_equal" - requires the cell value
+ to not match the one defined in the
+ value-attribute
+ </para>
</listitem>
- <listitem>
- "between" - requires the cell value to be
- between the values defined in the value-
- and value2 attributes
+ <listitem>
+ <para>
+ "between" - requires the cell value to
+ be between the values defined in the
+ value- and value2 attributes
+ </para>
</listitem>
- <listitem>
- "not_between" - requires the cell value
- not to be between the values defined in
- the value- and value2 attributes
+ <listitem>
+ <para>
+ "not_between" - requires the cell
+ value not to be between the values
+ defined in the value- and value2
+ attributes
+ </para>
</listitem>
</itemizedlist>
</para>
More information about the seam-commits
mailing list