Uses of Interface
com.inmethod.grid.IGridColumn
-
-
Uses of IGridColumn in com.inmethod.grid.column
Classes in com.inmethod.grid.column that implement IGridColumn Modifier and Type Class Description classAbstractColumn<M,I,S>Convenience implementation ofIGridColumn.classAbstractLightWeightColumn<M,I,S>Convenience implementation ofIGridColumn.classCheckBoxColumn<M,I,S>Column that allows a row in grid to be selected.classLinkColumn<M,I,S>Abstract column to display links in aDataGridclassPageLinkColumn<M,I,S>Displays a Link in the DataGrid to an Internal Wicket PageclassPropertyColumn<M,I,P,S>A lightweight column that displays a property of row object specified by an property expression.classWicketColumnAdapter<M,I,S>Adapter that allows usingDataTablecolumns from wicket extensions in anAbstractGrid.Methods in com.inmethod.grid.column that return types with arguments of type IGridColumn Modifier and Type Method Description static <M,I,S>
List<IGridColumn<M,I,S>>WicketColumnAdapter. wrapColumns(List<IColumn<I,S>> columns)Returns the specifiedIColumnlist as list ofWicketColumnAdapters that can be given to anAbstractGrid.static <T,M,I,S>
List<IGridColumn<M,I,S>>WicketColumnAdapter. wrapColumns(IColumn<I,S>[] columns)Returns the specifiedIColumnarray as list ofWicketColumnAdapters that can be given to anAbstractGrid. -
Uses of IGridColumn in com.inmethod.grid.column.editable
Classes in com.inmethod.grid.column.editable that implement IGridColumn Modifier and Type Class Description classAddDeleteColumn<M,I,S>Column that Displays Confirm, Cancel and Delete buttonsclassDropDownChoiceColumn<M,I,T,S>Property column that uses aDropDownChoicePanelas cell component when the item is selected.classEditableCheckBoxColumn<M,I,S>Property column that uses aCheckBoxPanelas cell component when the item is selected.classEditableLocalDateColumn<M,I,S>Property column that uses aLocalDateTextFieldPanelas cell component when the item is selected.classEditablePropertyColumn<M,I,P,S>Property column that uses aTextFieldPanelas cell component when the item is selected.classEditablePropertyTreeColumn<T extends TreeModel & Serializable,I extends TreeNode & Serializable,P,S>Tree column that allows to edit the property when item is selected.classSubmitCancelColumn<M,I,S> -
Uses of IGridColumn in com.inmethod.grid.column.tree
Classes in com.inmethod.grid.column.tree that implement IGridColumn Modifier and Type Class Description classAbstractTreeColumn<T extends TreeModel & Serializable,I extends TreeNode & Serializable,S>Base class forTreeGridcolumn that contains the actual tree.classPropertyTreeColumn<T extends TreeModel & Serializable,I extends TreeNode & Serializable,P,S>Simple tree column that displays a property ofTreeNodeinstance specified by the property expression. -
Uses of IGridColumn in com.inmethod.grid.common
Methods in com.inmethod.grid.common that return IGridColumn Modifier and Type Method Description IGridColumn<M,I,S>AbstractGrid. getLastClickedColumn()Methods in com.inmethod.grid.common that return types with arguments of type IGridColumn Modifier and Type Method Description Collection<IGridColumn<M,I,S>>AbstractGrid. getActiveColumns()Returns collection of currently visible columns.protected abstract Collection<IGridColumn<M,I,S>>AbstractGridRow. getActiveColumns()List<IGridColumn<M,I,S>>AbstractGrid. getAllColumns()Returns the list of all columns in this grid.<M,I,S>
Collection<IGridColumn<M,I,S>>ColumnsState. getVisibleColumns(Collection<IGridColumn<M,I,S>> allColumns)Filters the givenIGridColumncollection leaving only the columns with visibility set totrue.Methods in com.inmethod.grid.common with parameters of type IGridColumn Modifier and Type Method Description protected voidAbstractGrid. columnSanityCheck(IGridColumn<M,I,S> column)Checks whether the column is a valid grid columnprotected booleanAbstractGrid. onCellClicked(AjaxRequestTarget target, IModel<I> rowModel, IGridColumn<M,I,S> column)Method parameters in com.inmethod.grid.common with type arguments of type IGridColumn Modifier and Type Method Description <M,I,S>
Collection<IGridColumn<M,I,S>>ColumnsState. getVisibleColumns(Collection<IGridColumn<M,I,S>> allColumns)Filters the givenIGridColumncollection leaving only the columns with visibility set totrue.Constructor parameters in com.inmethod.grid.common with type arguments of type IGridColumn Constructor Description AbstractGrid(String id, IModel<M> model, List<IGridColumn<M,I,S>> columns)Creates newAbstractGridinstanceColumnsState(Collection<IGridColumn<M,I,S>> columns)Creates newColumnsStateinstance. -
Uses of IGridColumn in com.inmethod.grid.datagrid
Methods in com.inmethod.grid.datagrid that return types with arguments of type IGridColumn Modifier and Type Method Description protected abstract Collection<IGridColumn<D,T,S>>DataGridBody. getActiveColumns()Constructor parameters in com.inmethod.grid.datagrid with type arguments of type IGridColumn Constructor Description DataGrid(String id, D dataSource, List<IGridColumn<D,T,S>> columns)Crates a newDataGridinstance.DataGrid(String id, IModel<D> model, List<IGridColumn<D,T,S>> columns)Crates a newDataGridinstance.DefaultDataGrid(String id, D dataSource, List<IGridColumn<D,T,S>> columns)Crates a newDefaultDataGridinstance.DefaultDataGrid(String id, IModel<D> model, List<IGridColumn<D,T,S>> columns)Crates a newDefaultDataGridinstance. -
Uses of IGridColumn in com.inmethod.grid.toolbar
Methods in com.inmethod.grid.toolbar that return types with arguments of type IGridColumn Modifier and Type Method Description Collection<IGridColumn<M,I,S>>AbstractToolbar. getActiveColumns()Returns the collection of currently displayed columns in grid. -
Uses of IGridColumn in com.inmethod.grid.treegrid
Classes in com.inmethod.grid.treegrid that implement IGridColumn Modifier and Type Class Description classBaseTreeColumn<T extends TreeModel & Serializable,I extends TreeNode & Serializable,S>INTERNALMethods in com.inmethod.grid.treegrid that return types with arguments of type IGridColumn Modifier and Type Method Description protected abstract Collection<IGridColumn<T,I,S>>TreeGridBody. getActiveColumns()Constructor parameters in com.inmethod.grid.treegrid with type arguments of type IGridColumn Constructor Description TreeGrid(String id, IModel<T> model, List<IGridColumn<T,I,S>> columns)Creates a newTreeGridinstance.TreeGrid(String id, T model, List<IGridColumn<T,I,S>> columns)Creates a newTreeGridinstance.
-