com.extjs.gxt.ui.client.widget.table
Interface BaseTable

All Known Implementing Classes:
Table, TreeTable

Deprecated. see Grid

public interface BaseTable

Defines common methods for Table based components.


Method Summary
 TableColumn getColumn(int index)
          Deprecated. Returns the column at the specified index.
 boolean getColumnContextMenu()
          Deprecated. Returns the column context menu enabled state.
 TableColumnModel getColumnModel()
          Deprecated. Returns the table's column model.
 TableHeader getTableHeader()
          Deprecated. Returns the table's header.
 void sort(int index, Style.SortDir direction)
          Deprecated. Sorts the table using the specified column index.
 

Method Detail

getColumnModel

TableColumnModel getColumnModel()
Deprecated. 
Returns the table's column model.

Returns:
the column model

getColumn

TableColumn getColumn(int index)
Deprecated. 
Returns the column at the specified index.

Parameters:
index - the column index
Returns:
the column

getTableHeader

TableHeader getTableHeader()
Deprecated. 
Returns the table's header.

Returns:
the table header

sort

void sort(int index,
          Style.SortDir direction)
Deprecated. 
Sorts the table using the specified column index.

Parameters:
index - the column index
direction - the direction to sort (NONE, ASC, DESC)

getColumnContextMenu

boolean getColumnContextMenu()
Deprecated. 
Returns the column context menu enabled state.

Returns:
true if enabled, false otherwise.