Example usage for org.apache.wicket.extensions.markup.html.repeater.data.table DataTable subclass-usage

List of usage examples for org.apache.wicket.extensions.markup.html.repeater.data.table DataTable subclass-usage

Introduction

In this page you can find the example usage for org.apache.wicket.extensions.markup.html.repeater.data.table DataTable subclass-usage.

Usage

From source file net.tirasa.hct.editor.widgets.AdminDataTable.java

public class AdminDataTable extends DataTable {

    private static final long serialVersionUID = 7831191713372614221L;

    public AdminDataTable(final String id, final List<IColumn> columns, final ISortableDataProvider dataProvider,
            final int rowsPerPage) {

From source file org.apache.isis.viewer.wicket.ui.components.collectioncontents.ajaxtable.IsisAjaxFallbackDataTable.java

public class IsisAjaxFallbackDataTable<T, S> extends DataTable<T, S> {

    private static final long serialVersionUID = 1L;

    static final String UIHINT_PAGE_NUMBER = "pageNumber";

From source file org.apache.isis.viewer.wicket.ui.components.collectioncontents.ajaxtable.MyAjaxFallbackDefaultDataTable.java

public class MyAjaxFallbackDefaultDataTable<T, S> extends DataTable<T, S> {
    private static final long serialVersionUID = 1L;

    public MyAjaxFallbackDefaultDataTable(final String id, final List<? extends IColumn<T, S>> columns,
            final ISortableDataProvider<T, S> dataProvider, final int rowsPerPage) {
        super(id, columns, dataProvider, rowsPerPage);

From source file org.apache.syncope.client.console.wicket.extensions.markup.html.repeater.data.table.AjaxFallbackDataTable.java

public class AjaxFallbackDataTable<T, S> extends DataTable<T, S> {

    private static final long serialVersionUID = 6861105496141602937L;

    public AjaxFallbackDataTable(final String id, final List<? extends IColumn<T, S>> columns,
            final ISortableDataProvider<T, S> dataProvider, final int rowsPerPage,

From source file org.artifactory.common.wicket.component.table.SortableTable.java

/**
 * @author Yoav Aharoni
 */
public class SortableTable<T> extends DataTable<T> {
    @SuppressWarnings({ "unchecked" })
    public SortableTable(String id, final List<IColumn<T>> columns, ISortableDataProvider<T> dataProvider,

From source file org.cdlflex.ui.markup.html.repeater.data.table.DataTable.java

/**
 * Custom DataTable implementation that extends functionality for ITableAware columns and provides manipulation of rows
 * via IRowCallback. It also allows construction from an ITableSkeleton.
 * 
 * @param <T> The model object type
 * @param <S> the type of the sorting parameter

From source file org.devgateway.toolkit.forms.wicket.components.table.AjaxFallbackBootstrapDataTable.java

/**
 * @author idobre
 * @since 11/25/14
 *
 *        Table that uses Ajax-enhanced navigator with Twitter bootstrap styles
 */

From source file org.hippoecm.frontend.plugins.cms.admin.widgets.AdminDataTable.java

public class AdminDataTable<T> extends DataTable<T, String> {

    private static final long serialVersionUID = 1L;

    public AdminDataTable(String id, final List<IColumn<T, String>> columns,
            ISortableDataProvider<T, String> dataProvider, long rowsPerPage) {

From source file org.hippoecm.frontend.plugins.standards.list.datatable.ListDataTable.java

/**
 * A datatable with sorting, pagination, selection notification.  Its columns can be defined
 * with a {@link TableDefinition}.  This component can be used with any data type, i.e. it is
 * not bound to JcrNodeModels.
 */
public class ListDataTable<T> extends DataTable<T, String> {

From source file org.opensingular.lib.wicket.util.datatable.BSDataTable.java

public class BSDataTable<T, S> extends DataTable<T, S> {

    public static final Long DEFAULT_ROWS_PER_PAGE = 10L;

    private boolean stripedRows = true;
    private boolean hoverRows = true;