try with regular paging navigator, it will most likely work. the problem is that because you are using ajaxpagingnavigator, when you click the top you do not redraw the bottom. you need to add that behavior yourself.
-igor On Mon, Jul 28, 2008 at 12:01 PM, Daniel Freitas <[EMAIL PROTECTED]> wrote: > Hello guys. I searched the list for answers on this but couldn't find any. > Is there a way to show a PagingNavigator (actually an AjaxPagingNavigator) > on the top and bottom of a page? The navigator will page the same data, it's > added on top and bottom just for convenience. I tried to do: > > <div wicket:id="navigator"/> > <div wicket:id="booksList"> > <div wicket:id="books" class="book"> > <!-- list of books --> > </div> > </div> > <div wicket:id="navigator"/> > > At which wicket complains with: > > WicketMessage: The component XXXX has the same wicket:id as another > component already added at the same level > > > If I add a new component paging the same data, they do not sync > correctly(clicking the 3rd page on the top navigator does not update > the bottom > navigator, which istill displays page 3 as clickable). > > Regards, > Daniel Freitas > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
