Uses of Interface
org.apache.wicket.extensions.markup.html.repeater.data.table.IColumn

Packages that use IColumn
org.apache.wicket.extensions.ajax.markup.html.repeater.data.table   
org.apache.wicket.extensions.markup.html.repeater.data.table   
org.apache.wicket.extensions.markup.html.repeater.data.table.filter   
 

Uses of IColumn in org.apache.wicket.extensions.ajax.markup.html.repeater.data.table
 

Constructor parameters in org.apache.wicket.extensions.ajax.markup.html.repeater.data.table with type arguments of type IColumn
AjaxFallbackDefaultDataTable(String id, List<IColumn<T>> columns, ISortableDataProvider<T> dataProvider, int rowsPerPage)
          Constructor
 

Uses of IColumn in org.apache.wicket.extensions.markup.html.repeater.data.table
 

Subinterfaces of IColumn in org.apache.wicket.extensions.markup.html.repeater.data.table
 interface IStyledColumn<T>
          Interface that allows styling individuals DataTable columns
 

Classes in org.apache.wicket.extensions.markup.html.repeater.data.table that implement IColumn
 class AbstractColumn<T>
          A helper implementation for the IColumn interface
 class HeaderlessColumn<T>
          A column that does not have a header
 class PropertyColumn<T>
          A convenience implementation of column that adds a label to the cell whose model is determined by the provided wicket property expression (same as used by PropertyModel) that is evaluated against the current row's model object Example columns[0] = new PropertyColumn(new Model<String>("First Name"), "name.first"); The above will attach a label to the cell with a property model for the expression "name.first"
 

Methods in org.apache.wicket.extensions.markup.html.repeater.data.table that return types with arguments of type IColumn
 List<IColumn<T>> DataTable.getColumns()
           
protected  Item<IColumn<T>> DataTable.newCellItem(String id, int index, IModel<IColumn<T>> model)
          Factory method for Item container that represents a cell in the underlying DataGridView
 

Method parameters in org.apache.wicket.extensions.markup.html.repeater.data.table with type arguments of type IColumn
protected  Item<IColumn<T>> DataTable.newCellItem(String id, int index, IModel<IColumn<T>> model)
          Factory method for Item container that represents a cell in the underlying DataGridView
 

Constructor parameters in org.apache.wicket.extensions.markup.html.repeater.data.table with type arguments of type IColumn
DataTable(String id, List<IColumn<T>> columns, IDataProvider<T> dataProvider, int rowsPerPage)
          Constructor
DefaultDataTable(String id, List<IColumn<T>> columns, ISortableDataProvider<T> dataProvider, int rowsPerPage)
          Constructor
 

Uses of IColumn in org.apache.wicket.extensions.markup.html.repeater.data.table.filter
 

Subinterfaces of IColumn in org.apache.wicket.extensions.markup.html.repeater.data.table.filter
 interface IFilteredColumn<T>
          Represents a data table column that can be filtered.
 

Classes in org.apache.wicket.extensions.markup.html.repeater.data.table.filter that implement IColumn
 class ChoiceFilteredPropertyColumn<T,Y>
          A filtered property column that creates a textfield filter component.
 class FilteredAbstractColumn<T>
          A helper implementation for a filtered column.
 class FilteredPropertyColumn<T>
          Like PropertyColumn but with support for filters.
 class TextFilteredPropertyColumn<T,F>
          A filtered property column that creates a textfield filter component.
 



Copyright © 2006–2015 Apache Software Foundation. All rights reserved.