Uses of Class
to.etc.domui.component.tbl.TableModelTableBase

Packages that use TableModelTableBase
to.etc.domui.component.ntbl   
to.etc.domui.component.tbl   
 

Uses of TableModelTableBase in to.etc.domui.component.ntbl
 

Subclasses of TableModelTableBase in to.etc.domui.component.ntbl
 class ExpandingEditTable<T>
          This component is a table, using a TableModel, which can also edit it's rows and expand them.
 

Methods in to.etc.domui.component.ntbl with parameters of type TableModelTableBase
 boolean IRowEditorEvent.onRowChanged(TableModelTableBase<T> tablecomponent, E editor, T instance, boolean isNew)
          Called after a row has been edited in an editable table component, when editing is (somehow) marked as complete.
 

Uses of TableModelTableBase in to.etc.domui.component.tbl
 

Subclasses of TableModelTableBase in to.etc.domui.component.tbl
 class CheckBoxDataTable<T>
          Deprecated. 
 class DataCellTable
          A table-related component which shows all "rows" in a single cell instead of in a table.
 class DataTable<T>
          POC for a datatable based on the live dom code.
 class MultipleSelectionDataTable<T>
          DataTable customized to support multiple selection functionality.
 class TabularComponentBase<T>
           
 

Methods in to.etc.domui.component.tbl that return TableModelTableBase
 TableModelTableBase<T> HeaderContainer.getTable()
           
 TableModelTableBase<T> ColumnContainer.getTable()
           
 

Methods in to.etc.domui.component.tbl with parameters of type TableModelTableBase
 void AbstractRowRenderer.beforeQuery(TableModelTableBase<T> tbl)
          This gets called by the data table component just before it starts to render a new page.
 void KeyWordPopupRowRenderer.beforeQuery(TableModelTableBase<T> tbl)
          This gets called by the data table component just before it starts to render a new page.
 void IRowRenderer.beforeQuery(TableModelTableBase<T> tbl)
           
protected  void BasicRowRenderer.complete(TableModelTableBase<T> tbl)
          Complete this object if it is not already complete.
protected  void AbstractRowRenderer.complete(TableModelTableBase<T> tbl)
          Complete this object if it is not already complete (internal).
protected  void KeyWordPopupRowRenderer.complete(TableModelTableBase<T> tbl)
          Complete this object if it is not already complete (internal).
protected
<X> void
AbstractRowRenderer.renderColumn(TableModelTableBase<T> tbl, ColumnContainer<T> cc, int index, T instance, SimpleColumnDef cd)
          Render a single column fully.
protected
<X> void
KeyWordPopupRowRenderer.renderColumn(TableModelTableBase<T> tbl, ColumnContainer<T> cc, int index, T instance, SimpleColumnDef cd)
          Render a single column fully.
 void AbstractRowRenderer.renderHeader(TableModelTableBase<T> tbl, HeaderContainer<T> cc)
          Render the header for a table, using the simple column metadata provided.
 void KeyWordPopupRowRenderer.renderHeader(TableModelTableBase<T> tbl, HeaderContainer<T> cc)
           
 void IRowRenderer.renderHeader(TableModelTableBase<T> tbl, HeaderContainer<T> cc)
          Render table header.
 void AbstractRowRenderer.renderRow(TableModelTableBase<T> tbl, ColumnContainer<T> cc, int index, T instance)
           
 void KeyWordPopupRowRenderer.renderRow(TableModelTableBase<T> tbl, ColumnContainer<T> cc, int index, T instance)
           
 void IRowRenderer.renderRow(TableModelTableBase<T> tbl, ColumnContainer<T> cc, int index, T instance)
           
 

Constructors in to.etc.domui.component.tbl with parameters of type TableModelTableBase
ColumnContainer(TableModelTableBase<T> table)
           
HeaderContainer(TableModelTableBase<T> table)