public void onClick(AjaxRequestTarget target) {
IPageableComponent<E> component = findPageableComponent();
component.lastPage();
target.addComponent(component.getUpdatableComponent());
if(component instanceof IPageableNavigationListener) {
IPageableNavigationListener listener = (IPageableNavigationListener)component;
listener.onNextPage(target);
}
}