本文整理汇总了Java中org.apache.wicket.markup.html.navigation.paging.PagingNavigation类的典型用法代码示例。如果您正苦于以下问题:Java PagingNavigation类的具体用法?Java PagingNavigation怎么用?Java PagingNavigation使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
PagingNavigation类属于org.apache.wicket.markup.html.navigation.paging包,在下文中一共展示了PagingNavigation类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: newPagingNavigator
import org.apache.wicket.markup.html.navigation.paging.PagingNavigation; //导入依赖的package包/类
@Override
protected PagingNavigator newPagingNavigator(String navigatorId, final DataTable<?, ?> table) {
OAjaxBigPagingNavigator oAjaxBigPagingNavigator = new OAjaxBigPagingNavigator(navigatorId, table) {
private static final long serialVersionUID = 1L;
/**
* Implement our own ajax event handling in order to update the datatable itself, as the
* default implementation doesn't support DataViews.
*
* @see AjaxPagingNavigator#onAjaxEvent(org.apache.wicket.ajax.AjaxRequestTarget)
*/
@Override
protected void onAjaxEvent(final AjaxRequestTarget target) {
target.add(table);
}
@Override
protected PagingNavigation newNavigation(String id, IPageable pageable, IPagingLabelProvider labelProvider) {
PagingNavigation nv = super.newNavigation(id, pageable, labelProvider);
nv.setViewSize(NUMBER_PAGE_DISPLAYED);
return nv;
}
};
return oAjaxBigPagingNavigator;
}
示例2: newNavigation
import org.apache.wicket.markup.html.navigation.paging.PagingNavigation; //导入依赖的package包/类
/**
* Create a new PagingNavigation. May be subclassed to make us of specialized PagingNavigation.
*
* @param pageable
* the pageable component
* @param labelProvider
* The label provider for the link text.
* @return the navigation object
*/
@Override
protected PagingNavigation newNavigation(final String id, final IPageable pageable,
final IPagingLabelProvider labelProvider)
{
return new PagingNavigation("navigation", pageable, labelProvider)
{
@Override
public boolean isVisible()
{
// hide the numbered navigation bar e.g. 1 | 2 | 3 etc.
return false;
}
};
}
示例3: newNavigation
import org.apache.wicket.markup.html.navigation.paging.PagingNavigation; //导入依赖的package包/类
@Override
protected PagingNavigation newNavigation(String id, IPageable pageable, IPagingLabelProvider labelProvider) {
return new FlexPagingNavigation(id, pageable, labelProvider);
}
示例4: newNavigation
import org.apache.wicket.markup.html.navigation.paging.PagingNavigation; //导入依赖的package包/类
@Override
protected PagingNavigation newNavigation(IPageable pageable, IPagingLabelProvider labelProvider) {
PagingNavigation pagingNavigation = super.newNavigation(pageable, labelProvider);
return pagingNavigation;
}