Example usage for com.google.gwt.user.cellview.client AbstractCellTable getColumnIndex

List of usage examples for com.google.gwt.user.cellview.client AbstractCellTable getColumnIndex

Introduction

In this page you can find the example usage for com.google.gwt.user.cellview.client AbstractCellTable getColumnIndex.

Prototype

public int getColumnIndex(Column<T, ?> column) 

Source Link

Document

Get the index of the specified column.

Usage

From source file:com.bearsoft.gwt.ui.widgets.grid.DraggedColumn.java

public DraggedColumn(Column<T, ?> aColumn, Header<?> aHeader, AbstractCellTable<T> aTable, Element aCellElement,
        Element aTargetElement) {
    this(aColumn, aHeader, aTable != null ? aTable.getColumnIndex(aColumn) : -1, aTable, aCellElement,
            aTargetElement);/*from w w  w  . j a v  a 2s.c  om*/
}