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