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 an.dpr.manteniket.components.ManteniketDataTable.java

/**
 * An implementation of the DataTable that aims to solve the 90% usecase by adding navigation,
 * headers, an no-records-found toolbars to a standard {@link DataTable}.
 * <p>
 * The {@link NavigationToolbar} and the {@link HeadersToolbar} are added as top toolbars, while the
 * {@link NoRecordsToolbar} toolbar is added as a bottom toolbar.

From source file com.evolveum.midpoint.web.component.data.SelectableDataTable.java

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

    public SelectableDataTable(String id, List<IColumn<T, String>> columns, IDataProvider<T> dataProvider,
            int rowsPerPage) {
        super(id, columns, dataProvider, rowsPerPage);
    }

From source file com.francetelecom.clara.cloud.presentation.common.AjaxFallbackCustomDataTable.java

/**
 * Created with IntelliJ IDEA.
 * User: shjn2064
 * Date: 05/09/12
 * Time: 13:56
 * To change this template use File | Settings | File Templates.

From source file com.googlecode.wicketwebbeans.containers.BeanDataTable.java

/**
 * An implementation of the DataTable that aims to solve the 90% usecase by
 * adding headers, an no-records-found toolbars to a standard
 * {@link DataTable}. Unlike {@link AjaxFallbackDefaultDataTable}, this class
 * does not add the {@link NavigationToolbar} as part of the table. Hence the table can scroll
 * horizontally independent of the navigation.

From source file com.norconex.commons.wicket.bootstrap.table.BootstrapDataTable.java

/**
 * Bootstrap {@link DataTable}.
 * @author Pascal Essiembre
 *
 * @param <T>
 *            The model object type

From source file com.romeikat.datamessie.core.base.ui.page.AbstractTable.java

public abstract class AbstractTable<T, S> extends DataTable<T, S> {

    private static final long serialVersionUID = 1L;

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

From source file com.swordlord.gozer.components.wicket.datatable.GozerDataTable.java

/**
 * Gozer version of a {@link DataTable}.<br>
 * Normally used inside a {@link GWListPanel}.
 */
@SuppressWarnings("serial")
public class GozerDataTable extends DataTable<DataRowBase, String> {

From source file com.wt.dms.web.IndexManagerDataTable.java

/**
 * An implementation of the DataTable that aims to solve the 90% usecase by adding navigation,
 * headers, an no-records-found toolbars to a standard {@link DataTable}.
 * <p>
 * The {@link NavigationToolbar} and the {@link HeadersToolbar} are added as top toolbars, while the
 * {@link NoRecordsToolbar} toolbar is added as a bottom toolbar.

From source file com.zh.snmp.snmpweb.components.ZhDataDable.java

/**
 *
 * @author sonrisa
 */
public class ZhDataDable<T> extends DataTable<T> {
    private static final long serialVersionUID = 1L;

From source file de.tudarmstadt.ukp.csniper.webapp.support.wicket.CustomDataTable.java

/**
 * An implementation of the DataTable that aims to solve the 90% usecase by adding navigation,
 * headers, an no-records-found toolbars to a standard {@link DataTable}.
 * <p>
 * The {@link NavigationToolbar} and the {@link HeadersToolbar} are added as top toolbars, while the
 * {@link NoRecordsToolbar} toolbar is added as a bottom toolbar.