You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ca...@apache.org on 2006/10/10 23:34:44 UTC

svn commit: r462583 - in /myfaces/tomahawk/trunk/sandbox/core/src/main/tld: entities/excel_export_attributes.xml myfaces_sandbox.tld

Author: cagatay
Date: Tue Oct 10 14:34:43 2006
New Revision: 462583

URL: http://svn.apache.org/viewvc?view=rev&rev=462583
Log:
Add tld config for the new component ExcelExport

Added:
    myfaces/tomahawk/trunk/sandbox/core/src/main/tld/entities/excel_export_attributes.xml
Modified:
    myfaces/tomahawk/trunk/sandbox/core/src/main/tld/myfaces_sandbox.tld

Added: myfaces/tomahawk/trunk/sandbox/core/src/main/tld/entities/excel_export_attributes.xml
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/core/src/main/tld/entities/excel_export_attributes.xml?view=auto&rev=462583
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/core/src/main/tld/entities/excel_export_attributes.xml (added)
+++ myfaces/tomahawk/trunk/sandbox/core/src/main/tld/entities/excel_export_attributes.xml Tue Oct 10 14:34:43 2006
@@ -0,0 +1,7 @@
+<attribute>
+    <name>for</name>
+    <required>true</required>
+    <rtexprvalue>false</rtexprvalue>
+    <type>java.lang.String</type>
+    <description>The datatable component whose values to be exported</description>
+</attribute>
\ No newline at end of file

Modified: myfaces/tomahawk/trunk/sandbox/core/src/main/tld/myfaces_sandbox.tld
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/core/src/main/tld/myfaces_sandbox.tld?view=diff&rev=462583&r1=462582&r2=462583
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/core/src/main/tld/myfaces_sandbox.tld (original)
+++ myfaces/tomahawk/trunk/sandbox/core/src/main/tld/myfaces_sandbox.tld Tue Oct 10 14:34:43 2006
@@ -136,6 +136,7 @@
 <!ENTITY select_items_attributes SYSTEM "entities/select_items_attributes.xml">
 <!ENTITY csvvalidator_attributes SYSTEM "entities/csvvalidator_attributes.xml">
 <!ENTITY submit_on_event_attributes	SYSTEM "entities/submit_on_event_attributes.xml">
+<!ENTITY excel_export_attributes	SYSTEM "entities/excel_export_attributes.xml">
 ]>
 
 
@@ -1556,6 +1557,15 @@
             to submit a form by "clicking" on a link or button
         </description>
         &submit_on_event_attributes;
+    </tag>
+    
+    <tag>
+        <name>excelExport</name>
+        <tag-class>org.apache.myfaces.custom.excelexport.ExcelExportTag</tag-class>
+        <body-content>JSP</body-content>
+        <description>Export datatable contents to an excel file
+        </description>
+        &excel_export_attributes;
     </tag>
 
 </taglib>