I have successfully added table support to my learning app.
Wonderful, intuitive, extremely easy to work with.

Now I have just tried to use the export to CVS, XLS, XML functionality
and it looks to me that the exporter does not group/format data in
columns as it is in the table, but instead simply calls toString() on
every row. Sample XML output:

<table>
<row>MyBean:name=aa1:surname=bb1:comment=cc1</row>
<row>MyBean:name=aa2:surname=bb2:comment=cc2</row>
</table>

instead of :

<table>
<row>
  <col name="name">aa1</col>
  <col name="surname">bb1</col>
  <col name="comment">cc1</col>
</row>
<row>
  <col name="name">aa2</col>
  <col name="surname">bb2</col>
  <col name="comment">cc2</col>
</row>
</table>

this is similar for XLS and CSV, as columns are not separated by
comma, just toString is exported.

Is there any easy way to use columns?

I use Wicket 1.1 beta 2

Darek


-------------------------------------------------------
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
_______________________________________________
Wicket-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to