Uses of Interface
org.apache.wicket.markup.html.navigation.paging.IPageable
-
-
Uses of IPageable in org.apache.wicket.ajax.markup.html.navigation.paging
Methods in org.apache.wicket.ajax.markup.html.navigation.paging with parameters of type IPageable Modifier and Type Method Description protected AjaxPagingNavigationBehavior
AjaxPagingNavigationIncrementLink. newAjaxPagingNavigationBehavior(IPageable pageable, String event)
protected AjaxPagingNavigationBehavior
AjaxPagingNavigationLink. newAjaxPagingNavigationBehavior(IPageable pageable, String event)
protected PagingNavigation
AjaxPagingNavigator. newNavigation(String id, IPageable pageable, IPagingLabelProvider labelProvider)
protected AbstractLink
AjaxPagingNavigator. newPagingNavigationIncrementLink(String id, IPageable pageable, int increment)
Create a new increment link.protected Link<?>
AjaxPagingNavigation. newPagingNavigationLink(String id, IPageable pageable, long pageIndex)
Factory method for creating ajaxian page number links.protected AbstractLink
AjaxPagingNavigator. newPagingNavigationLink(String id, IPageable pageable, int pageNumber)
Create a new pagenumber link.Constructors in org.apache.wicket.ajax.markup.html.navigation.paging with parameters of type IPageable Constructor Description AjaxPagingNavigation(String id, IPageable pageable)
Constructor.AjaxPagingNavigation(String id, IPageable pageable, IPagingLabelProvider labelProvider)
Constructor.AjaxPagingNavigationBehavior(IAjaxLink owner, IPageable pageable, String event)
Attaches the navigation behavior to the owner link and drives the pageable component.AjaxPagingNavigationIncrementLink(String id, IPageable pageable, int increment)
Constructor.AjaxPagingNavigationLink(String id, IPageable pageable, long pageNumber)
Constructor.AjaxPagingNavigator(String id, IPageable pageable)
Constructor.AjaxPagingNavigator(String id, IPageable pageable, IPagingLabelProvider labelProvider)
Constructor. -
Uses of IPageable in org.apache.wicket.extensions.ajax.markup.html.repeater.data.table
Classes in org.apache.wicket.extensions.ajax.markup.html.repeater.data.table that implement IPageable Modifier and Type Class Description class
AjaxFallbackDefaultDataTable<T,S>
An implementation of the DataTable that aims to solve the 90% usecase by adding navigation, headers, an no-records-found toolbars to a standardDataTable
. -
Uses of IPageable in org.apache.wicket.extensions.markup.html.repeater.data.grid
Classes in org.apache.wicket.extensions.markup.html.repeater.data.grid that implement IPageable Modifier and Type Class Description class
AbstractDataGridView<T>
Acts as a base for data-grid views.class
DataGridView<T>
Simple concrete implementation ofAbstractDataGridView
-
Uses of IPageable in org.apache.wicket.extensions.markup.html.repeater.data.table
Classes in org.apache.wicket.extensions.markup.html.repeater.data.table that implement IPageable Modifier and Type Class Description class
DataTable<T,S>
A data table builds on data grid view to introduce toolbars.class
DefaultDataTable<T,S>
An implementation of the DataTable that aims to solve the 90% usecase by adding navigation, headers, an no-records-found toolbars to a standardDataTable
. -
Uses of IPageable in org.apache.wicket.markup.html.list
Classes in org.apache.wicket.markup.html.list that implement IPageable Modifier and Type Class Description class
PageableListView<T>
PageableListView is similar to ListView but provides in addition pageable views. -
Uses of IPageable in org.apache.wicket.markup.html.navigation.paging
Subinterfaces of IPageable in org.apache.wicket.markup.html.navigation.paging Modifier and Type Interface Description interface
IPageableItems
represents a countable amount of items that can be paginated.Fields in org.apache.wicket.markup.html.navigation.paging declared as IPageable Modifier and Type Field Description protected IPageable
PagingNavigation. pageable
The PageableListView this navigation is navigating.protected IPageable
PagingNavigationIncrementLink. pageable
The PageableListView the page links are referring to.protected IPageable
PagingNavigationLink. pageable
The pageable list view.Methods in org.apache.wicket.markup.html.navigation.paging that return IPageable Modifier and Type Method Description IPageable
PagingNavigator. getPageable()
IPageable
this navigator is linked withMethods in org.apache.wicket.markup.html.navigation.paging with parameters of type IPageable Modifier and Type Method Description protected PagingNavigation
PagingNavigator. newNavigation(String id, IPageable pageable, IPagingLabelProvider labelProvider)
Create a new PagingNavigation.protected AbstractLink
PagingNavigator. newPagingNavigationIncrementLink(String id, IPageable pageable, int increment)
Create a new increment link.protected AbstractLink
PagingNavigation. newPagingNavigationLink(String id, IPageable pageable, long pageIndex)
Factory method for creating page number links.protected AbstractLink
PagingNavigator. newPagingNavigationLink(String id, IPageable pageable, int pageNumber)
Create a new pagenumber link.Constructors in org.apache.wicket.markup.html.navigation.paging with parameters of type IPageable Constructor Description PagingNavigation(String id, IPageable pageable)
Constructor.PagingNavigation(String id, IPageable pageable, IPagingLabelProvider labelProvider)
Constructor.PagingNavigationIncrementLink(String id, IPageable pageable, int increment)
Constructor.PagingNavigationLink(String id, IPageable pageable, long pageNumber)
Constructor.PagingNavigator(String id, IPageable pageable)
Constructor.PagingNavigator(String id, IPageable pageable, IPagingLabelProvider labelProvider)
Constructor. -
Uses of IPageable in org.apache.wicket.markup.repeater
Classes in org.apache.wicket.markup.repeater that implement IPageable Modifier and Type Class Description class
AbstractPageableView<T>
An abstract repeater view that provides paging functionality to its subclasses. -
Uses of IPageable in org.apache.wicket.markup.repeater.data
Classes in org.apache.wicket.markup.repeater.data that implement IPageable Modifier and Type Class Description class
DataView<T>
DataView is a basic implementation ofAbstractPageableView
.class
DataViewBase<T>
Base class for data views.class
GridView<T>
A pageable DataView which breaks the data in the IDataProvider into a number of data-rows, depending on the column size.
-