List of usage examples for com.google.gwt.user.cellview.client Column subclass-usage
From source file org.ssgwt.client.ui.datagrid.column.SSTextColumn.java
/**
* The SSTextColumn to be able to get the column name from a event
*
* @author Alec Erasmus
* @since 14 Aug 2012
*/
From source file org.uberfire.client.tables.SelectionColumn.java
public class SelectionColumn<T> extends Column<T, Boolean> { public static <T> SelectionColumn<T> createAndAddSelectionColumn(CellTable<T> cellTable) { SelectionColumn<T> selectionColumn = new SelectionColumn<T>(cellTable); cellTable.addColumn(selectionColumn, SafeHtmlUtils.fromSafeConstant("<br>")); return selectionColumn;
From source file org.uberfire.ext.widgets.common.client.tables.SelectionColumn.java
public class SelectionColumn<T> extends Column<T, Boolean> { private final DataGrid<T> dataGrid; public SelectionColumn(DataGrid<T> dataGrid) { super(new CheckboxCell(true, true));
From source file org.uberfire.ext.widgets.common.client.tables.TitledTextColumn.java
/** * A column containing TitleText cells * @param <T> */ public abstract class TitledTextColumn<T> extends Column<T, TitledTextCell.TitledText> {
From source file stroom.cell.info.client.InfoColumn.java
public abstract class InfoColumn<T> extends Column<T, GlyphIcon> { public InfoColumn() { super(new FACell()); } @Override
From source file stroom.cell.info.client.InfoHelpLinkColumn.java
public abstract class InfoHelpLinkColumn<T> extends Column<T, GlyphIcon> { public InfoHelpLinkColumn() { super(new FACell()); } @Override
From source file stroom.data.grid.client.EndColumn.java
public class EndColumn<T> extends Column<T, String> { public EndColumn() { super(new TextCell()); } @Override
From source file stroom.data.grid.client.OrderByColumn.java
public abstract class OrderByColumn<T, C> extends Column<T, C> implements HasDisplayValue { private final OrderBy orderBy; public OrderByColumn(final Cell<C> cell, final OrderBy orderBy) { super(cell); setSortable(true);
From source file uk.ac.ebi.fg.annotare2.web.gwt.editor.client.view.experiment.design.ProtocolHardwareColumn.java
public class ProtocolHardwareColumn extends Column<ProtocolRow, String> { private final Cell<String> defaultCell; private final Cell<String> sequencingCell; private Cell<String> activeCell;