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 TypeClassDescriptionclassA passthrough column, useful for giving cells access to the entire row object.classTextColumn<T>A column that displays its contents with aTextCelland 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 theColumnthat was sorted.Column<?, ?> ColumnSortList.ColumnSortInfo.getColumn()Get theColumnthat 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 TypeMethodDescriptionvoidAdds a column to the end of the table.voidAdds a column to the end of the table with an associatedSafeHtmlheader.voidAdds a column to the end of the table with an associatedSafeHtmlheader and footer.voidAdds a column to the end of the table with an associated header.voidAdds a column to the end of the table with an associated header and footer.voidAdds a column to the end of the table with an associated String header.voidAdds a column to the end of the table with an associated String header and footer.voidAbstractCellTable.clearColumnWidth(Column<T, ?> column) Clear the width of the specifiedColumn.protected final voidAbstractHeaderOrFooterBuilder.enableColumnHandlers(ElementBuilderBase<?> builder, Column<T, ?> column) Enables column-specific event handling for the specified element.intAbstractCellTable.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.voidAbstractCellTable.insertColumn(int beforeIndex, Column<T, ?> col) Inserts a column into the table at the specified index.voidAbstractCellTable.insertColumn(int beforeIndex, Column<T, ?> col, SafeHtml headerHtml) Inserts a column into the table at the specified index with an associatedSafeHtmlheader.voidAbstractCellTable.insertColumn(int beforeIndex, Column<T, ?> col, SafeHtml headerHtml, SafeHtml footerHtml) Inserts a column into the table at the specified index with an associatedSafeHtmlheader and footer.voidAbstractCellTable.insertColumn(int beforeIndex, Column<T, ?> col, Header<?> header) Inserts a column into the table at the specified index with an associated header.voidAbstractCellTable.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.voidAbstractCellTable.insertColumn(int beforeIndex, Column<T, ?> col, String headerString) Inserts a column into the table at the specified index with an associated String header.voidAbstractCellTable.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 aColumnonto the list at index zero, setting ascending to true.voidAbstractCellTable.removeColumn(Column<T, ?> col) Remove a column.voidAbstractCellTable.setColumnWidth(Column<T, ?> column, double width, Style.Unit unit) Set the width of aColumn.voidAbstractCellTable.setColumnWidth(Column<T, ?> column, String width) Set the width of aColumn.voidCellTable.setColumnWidth(Column<T, ?> column, double width, Style.Unit unit) Set the width of aColumn.voidCellTable.setColumnWidth(Column<T, ?> column, String width) Set the width of aColumn.voidColumnSortEvent.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.