> I would like to display two table rows for each row of data within a
> DataTable and would like suggestions on a good way to do that.
>
> Basically, I want output like this for each row of data:
>
> <tr>
>   <td>id</td>
>   <td>name</td>
>   <td>edit</td>
>   <td>delete</td>
> </tr>
> <tr>
>   <td>&nbsp</td>
>   <td colspan="3">long description</td>
> </tr>
>
> This is a very simplified version, but it illustrates what I want to do.

Do something like:

<span wicket:id="rows">
  <tr><td>id</td><td>name</td><td>edit</td><td>delete</td></tr>
  <tr><td>&nbsp</td><td colspan="3">long description</td></tr>
</span>

> In reality, I'd like to have an ajax link in the 1st row that reveals
> the second row when selected.  The 2nd row would have all sorts of
> additional details about that row of data, but would only display them
> if the user selects the "full details" link.

Same idea.

Eelco

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

Reply via email to