I need to create a 3 row x N column table with 5 columns per page.
The problem is that I end up with:

<tr><td wicket:id="row1">stuff</td></tr>
<tr><td wicket:id="row2">stuff</td></tr>
<tr><td wicket:id="row3">stuff</td></tr>

<div wicket:id="pagingNav"></div>

Where I want the contents of row1, row2 & row3 coordinated with
respect to the PagingNavigator.  Has anyone gone down such a path, and
if so are there any relevant lessons learned?  I'm considering
subclassing DataView to create a DataViewCoordinator(DataView...
dataViews) such that a call to:

   coordinator.setCurrentPage(int n)

results in the same call to each of the coordinated DataViews.

Many thanks,
Scott

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

Reply via email to