Interface AbstractCellTable.TableSectionChangeHandler

  • All Known Implementing Classes:
    CellTable
    Enclosing class:
    AbstractCellTable<T>

    protected static interface AbstractCellTable.TableSectionChangeHandler
    Interface that this class's subclass may implement to get notified with table section change event. During rendering, a faster method based on swaping the entire section will be used iff
  • it's in IE - since all other optimizations have been turned off
  • the table implements TableSectionChangeHandler interface When a section is being replaced by another table with the new table html, the methods in this interface will be invoked with the changed section. The table should update its internal references to the sections properly so that when AbstractCellTable.getTableBodyElement(), AbstractCellTable.getTableHeadElement(), or AbstractCellTable.getTableFootElement() are called, the correct section will be returned.