naseer0021 / extremetable

Automatically exported from code.google.com/p/extremetable
0 stars 0 forks source link

ExportTag doesn't work #1

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
I am using eXtremeComponents and I want to use the export tags, how ever
when  I try to use the export button, the jsp reloads again but without the
table and never appear a popup where I can download the file, this is how
I'm using the export tag: 

<ec:exportXls fileName="workbook.xls" tooltip="Export to Excel" text="XLS" />

I would appreciate some help with this

thanks

Original issue reported on code.google.com by chris.em...@gmail.com on 12 Oct 2007 at 9:59

GoogleCodeExporter commented 9 years ago
I have ever got the same problem.
If you use struts2, you must place eXtremeExport after strutsFilter.For example:
    <filter-mapping>
        <filter-name>eXtremeExport</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

    <filter-mapping>
        <filter-name>struts</filter-name>
        <url-pattern>/*</url-pattern>
        <dispatcher>REQUEST</dispatcher>
        <dispatcher>FORWARD</dispatcher>
    </filter-mapping>

Original comment by wangjian...@gmail.com on 16 Nov 2007 at 1:05

GoogleCodeExporter commented 9 years ago
I am having the same problem, and I am not using Struts 2.

The Export does not work, has anybody got the export working?

Original comment by leonar...@gmail.com on 1 Mar 2008 at 7:34

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
Anybody got extremetable export working with struts2? Please provide 
instructions how
to use export option with struts2.

Original comment by sudhakar...@gmail.com on 20 Feb 2009 at 10:14

GoogleCodeExporter commented 9 years ago
Have any body use extremetable struts2. If so please say me how to set list 
(presidents) in action to these tags in jsp....
<%@ taglib uri="/tld/extremecomponents" prefix="ec" %>
<ec:table items="presidents" var="pres"  
imagePath="${pageContext.request.contextPath}/images/*.gif"  
action="${pageContext.request.contextPath}/presidents.run"  > 

Original comment by elanchez...@gmail.com on 7 Sep 2009 at 10:42