Hi,

   I have a table within a table, basically each row has some main details,
and the sub table lists attributes for the row.  The issue I'm having is
that not all attributes should display for each row, and I'm not sure how to
get around this.


ex.
<table>
   <tr wicket:id="list">
       <td><td>
       <table>
            <tr>
                <td><sp an wicket:id='attrib1'>
                <td><sp an wicket:id='attrib2'>
                <td><sp an wicket:id='attrib3'>
            </tr>
       </table>
   </tr>
</table>
   
some rows I'd like to only display attrib1 and attrib2 and other rows I may
display all three,...
I'm using a RepeatingView to populate the table, I'm guessing that this is
probably wrong.  

Is there a way to  have a a list dependent upon another list? like below?

<table>
   <tr wicket:it="list">
       <td><td>
       <table>
            <tr wicket:id="list2" join on key to list1>
                <td><sp an wicket:id='attrib1'>
                <td><sp an wicket:id='attrib2'>
                <td><sp an wicket:id='attrib3'>
            </tr>
       </table>
   </tr>
</table>






-- 
View this message in context: 
http://www.nabble.com/Tables-tp19556708p19556708.html
Sent from the Wicket - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to