use of org.apache.wicket.markup.repeater.AbstractRepeater in project midpoint by Evolveum.
the class NavigatorPanel method changeCurrentPage.
private void changeCurrentPage(AjaxRequestTarget target, long page) {
pageable.setCurrentPage(page);
Component container = ((Component) pageable);
while (container instanceof AbstractRepeater) {
container = container.getParent();
}
target.add(container);
target.add(this);
onPageChanged(target, page);
}
Aggregations