I build a table like this:
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="pad5 bld"><wicket:message
key="dateTitle"/></td>
<td><wicket:message
key="timeTitle"/></td>
<td><wicket:message
key="statusTitle"/></td>
<td> </td>
</tr>
<tr wicket:id="recurringEvents">
<td wicket:id="date" class="grytop
pad5">[Date]</td>
<td wicket:id="time"
class="grytop">[Time]</td>
<td wicket:id="status"
class="grytop">[Status]</td>
<td ><a wicket:id="replyNow"
class="guestlink"><span wicket:id="reply" /></a> </td>
</tr>
</table>
Now, there are certain columns I need to hide in certain circumstances.
I have no problem hiding the 'content' of certain columns by setting the
particular value to empty in my dataprovider. However, I would like to
hide the entire column including the header - how can that be done?
Thanks!
Michael