Uses of Class
com.google.gwt.dom.client.TableSectionElement
Package
Description
Classes for low-level DOM programming.
The "cellview" widget set.
-
Uses of TableSectionElement in com.google.gwt.dom.client
Modifier and TypeMethodDescriptionstatic TableSectionElement
Assert that the givenElement
is compatible with this class and automatically typecast it.final TableSectionElement
Document.createTBodyElement()
Creates a <tbody> element.final TableSectionElement
TableElement.createTFoot()
Create a table footer row or return an existing one.final TableSectionElement
Document.createTFootElement()
Creates a <tfoot> element.final TableSectionElement
TableElement.createTHead()
Create a table header row or return an existing one.final TableSectionElement
Document.createTHeadElement()
Creates a <thead> element.final TableSectionElement
TableElement.getTFoot()
The table's TFOOT, or null if none exists.final TableSectionElement
TableElement.getTHead()
The table's THEAD, or null if none exists.Modifier and TypeMethodDescriptionfinal NodeList
<TableSectionElement> TableElement.getTBodies()
Returns a collection of the table bodies (including implicit ones).Modifier and TypeMethodDescriptionfinal void
TableElement.setTFoot
(TableSectionElement tFoot) The table's TFOOT, or null if none exists.final void
TableElement.setTHead
(TableSectionElement tHead) The table's THEAD, or null if none exists. -
Uses of TableSectionElement in com.google.gwt.user.cellview.client
Modifier and TypeMethodDescriptionprotected abstract TableSectionElement
AbstractCellTable.getTableBodyElement()
Get the tbody element that contains the render row values.protected TableSectionElement
CellTable.getTableBodyElement()
protected TableSectionElement
DataGrid.getTableBodyElement()
protected abstract TableSectionElement
AbstractCellTable.getTableFootElement()
Get the tfoot element that contains the footers.protected TableSectionElement
CellTable.getTableFootElement()
protected TableSectionElement
DataGrid.getTableFootElement()
protected abstract TableSectionElement
AbstractCellTable.getTableHeadElement()
Get the thead element that contains the headers.protected TableSectionElement
CellTable.getTableHeadElement()
protected TableSectionElement
DataGrid.getTableHeadElement()
CellTable.getTableLoadingSection()
Return the section that display loading indicator and the empty table widget.Modifier and TypeMethodDescriptionvoid
AbstractCellTable.TableSectionChangeHandler.onTableBodyChange
(TableSectionElement newTBody) Notify that a table body section has been changed.void
CellTable.onTableBodyChange
(TableSectionElement newTBody) void
AbstractCellTable.TableSectionChangeHandler.onTableFootChange
(TableSectionElement newTFoot) Notify that a table body section has been changed.void
CellTable.onTableFootChange
(TableSectionElement newTFoot) void
AbstractCellTable.TableSectionChangeHandler.onTableHeadChange
(TableSectionElement newTHead) Notify that a table head section has been changed.void
CellTable.onTableHeadChange
(TableSectionElement newTHead)