<tr wicket:id="rows" id="rows">
<td wicket:id="myCell">My dummy data</td>
[more cells]
</tr>
On 9/10/05, Dariusz Wojtas <[EMAIL PROTECTED]> wrote:
Hi,
I have a table with definition:
<tr wicket:id="rows" id="rows">
<td><span wicket:id="myCell">My dummy data</span></td>
[more cells]
</tr>
and Java code:
listItem.add(new Label("myCell", "some value"));
which is nice, readable, etc, etc
The rendered code is:
<tr id="rows">
<td><span>Some data</span></td>
[more cells]
</tr>
How do I get rid of these 'span' elements inside generated cells?
I only want to see my Label content in the result.
'span' itself makes no problems, but having it added so many times in
a bigger table is not what I could expect.
Any hint?
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
