| Apache Wicket > Framework Documentation > Reference library > Wicket reference > Component > How to use Ajax paging with DataView |
Say you have a page with a PagingNavigator and a DataView.
DataView dataView = new MyDataView("dataView"); add(dataView); PagingNavigator pager = new PagingNavigator("pager", dataView); add(pager);
Now you want to do the paging be done via Ajax. But simply replacing the PagingNavigator with a AjaxPagingNavigator won't do it - the Page will be updated, but the DataView won't. To accomplish this, you need to do the following:
final WebMarkupContainer dataContainer = new WebMarkupContainer("dataContainer"); dataContainer.setOutputMarkupId(true); add(dataContainer); DataView dataView = new MyDataView("dataView"); dataContainer.add(dataView); AjaxPagingNavigator pager = new AjaxPagingNavigator("pager", dataView) { @Override protected void onAjaxEvent(AjaxRequestTarget target) { target.addComponent(dataContainer); } }; dataContainer.add(pager);
From a posting of Igor to the wicket-user list