Uses of Class
com.google.gwt.user.cellview.client.Column
Packages that use Column
-
Uses of Column in com.google.gwt.user.cellview.client
Subclasses of Column in com.google.gwt.user.cellview.clientModifier and TypeClassDescriptionclass
A passthrough column, useful for giving cells access to the entire row object.class
TextColumn<T>
A column that displays its contents with aTextCell
and does not make use of view data.Methods in com.google.gwt.user.cellview.client that return ColumnModifier and TypeMethodDescriptionAbstractCellTable.getColumn
(int col) Get the column at the specified index.Column
<?, ?> ColumnSortEvent.getColumn()
Get theColumn
that was sorted.Column
<?, ?> ColumnSortList.ColumnSortInfo.getColumn()
Get theColumn
that was sorted.Given an element in the DOM subtree returned by the most recent call toFooterBuilder.buildFooter()
, returns the Column that should be the target of any button clicks or other events on that element, or null if the events should be discarded.Given an element in the DOM subtree returned by the most recent call toHeaderBuilder.buildHeader()
, returns the Column that should be the target of any button clicks or other events on that element, or null if the events should be discarded.Methods in com.google.gwt.user.cellview.client with parameters of type ColumnModifier and TypeMethodDescriptionvoid
Adds a column to the end of the table.void
Adds a column to the end of the table with an associatedSafeHtml
header.void
Adds a column to the end of the table with an associatedSafeHtml
header and footer.void
Adds a column to the end of the table with an associated header.void
Adds a column to the end of the table with an associated header and footer.void
Adds a column to the end of the table with an associated String header.void
Adds a column to the end of the table with an associated String header and footer.void
AbstractCellTable.clearColumnWidth
(Column<T, ?> column) Clear the width of the specifiedColumn
.protected final void
AbstractHeaderOrFooterBuilder.enableColumnHandlers
(ElementBuilderBase<?> builder, Column<T, ?> column) Enables column-specific event handling for the specified element.int
AbstractCellTable.getColumnIndex
(Column<T, ?> column) Get the index of the specified column.AbstractCellTable.getColumnWidth
(Column<T, ?> column) Get the width of aColumn
.ColumnSortEvent.ListHandler.getComparator
(Column<T, ?> column) Returns the comparator that has been set for the specified column, or null if no comparator has been set.void
AbstractCellTable.insertColumn
(int beforeIndex, Column<T, ?> col) Inserts a column into the table at the specified index.void
AbstractCellTable.insertColumn
(int beforeIndex, Column<T, ?> col, SafeHtml headerHtml) Inserts a column into the table at the specified index with an associatedSafeHtml
header.void
AbstractCellTable.insertColumn
(int beforeIndex, Column<T, ?> col, SafeHtml headerHtml, SafeHtml footerHtml) Inserts a column into the table at the specified index with an associatedSafeHtml
header and footer.void
AbstractCellTable.insertColumn
(int beforeIndex, Column<T, ?> col, Header<?> header) Inserts a column into the table at the specified index with an associated header.void
AbstractCellTable.insertColumn
(int beforeIndex, Column<T, ?> col, Header<?> header, Header<?> footer) Inserts a column into the table at the specified index with an associated header and footer.void
AbstractCellTable.insertColumn
(int beforeIndex, Column<T, ?> col, String headerString) Inserts a column into the table at the specified index with an associated String header.void
AbstractCellTable.insertColumn
(int beforeIndex, Column<T, ?> col, String headerString, String footerString) Inserts a column into the table at the specified index with an associated String header and footer.Push aColumn
onto the list at index zero, setting ascending to true.void
AbstractCellTable.removeColumn
(Column<T, ?> col) Remove a column.void
AbstractCellTable.setColumnWidth
(Column<T, ?> column, double width, Style.Unit unit) Set the width of aColumn
.void
AbstractCellTable.setColumnWidth
(Column<T, ?> column, String width) Set the width of aColumn
.void
CellTable.setColumnWidth
(Column<T, ?> column, double width, Style.Unit unit) Set the width of aColumn
.void
CellTable.setColumnWidth
(Column<T, ?> column, String width) Set the width of aColumn
.void
ColumnSortEvent.ListHandler.setComparator
(Column<T, ?> column, Comparator<T> comparator) Set the comparator used to sort the specified column in ascending order.Constructors in com.google.gwt.user.cellview.client with parameters of type ColumnModifierConstructorDescriptionColumnSortInfo
(Column<?, ?> column, boolean ascending) Construct a newColumnSortList.ColumnSortInfo
.