|
GWT 2.7.0 | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.google.gwt.core.client.JavaScriptObject com.google.gwt.dom.client.Node com.google.gwt.dom.client.Element com.google.gwt.dom.client.TableElement
@TagName(value="table") public class TableElement
The create* and delete* methods on the table allow authors to construct and modify tables. [HTML 4.01] specifies that only one of each of the CAPTION, THEAD, and TFOOT elements may exist in a table. Therefore, if one exists, and the createTHead() or createTFoot() method is called, the method returns the existing THead or TFoot element.
Field Summary | |
---|---|
static java.lang.String |
TAG
|
Fields inherited from class com.google.gwt.dom.client.Element |
---|
DRAGGABLE_AUTO, DRAGGABLE_FALSE, DRAGGABLE_TRUE |
Fields inherited from class com.google.gwt.dom.client.Node |
---|
DOCUMENT_NODE, ELEMENT_NODE, TEXT_NODE |
Constructor Summary | |
---|---|
protected |
TableElement()
|
Method Summary | |
---|---|
static TableElement |
as(Element elem)
Assert that the given Element is compatible with this class and
automatically typecast it. |
TableCaptionElement |
createCaption()
Create a new table caption object or return an existing one. |
TableSectionElement |
createTFoot()
Create a table footer row or return an existing one. |
TableSectionElement |
createTHead()
Create a table header row or return an existing one. |
void |
deleteCaption()
Delete the table caption, if one exists. |
void |
deleteRow(int index)
Delete a table row. |
void |
deleteTFoot()
Delete the header from the table, if one exists. |
void |
deleteTHead()
Delete the header from the table, if one exists. |
int |
getBorder()
The width of the border around the table. |
TableCaptionElement |
getCaption()
The table's CAPTION, or null if none exists. |
int |
getCellPadding()
Specifies the horizontal and vertical space between cell content and cell borders. |
int |
getCellSpacing()
Specifies the horizontal and vertical separation between cells. |
java.lang.String |
getFrame()
Specifies which external table borders to render. |
NodeList<TableRowElement> |
getRows()
Returns a collection of all the rows in the table, including all in THEAD, TFOOT, all TBODY elements. |
java.lang.String |
getRules()
Specifies which internal table borders to render. |
NodeList<TableSectionElement> |
getTBodies()
Returns a collection of the table bodies (including implicit ones). |
TableSectionElement |
getTFoot()
The table's TFOOT, or null if none exists. |
TableSectionElement |
getTHead()
The table's THEAD, or null if none exists. |
java.lang.String |
getWidth()
Specifies the desired table width. |
TableRowElement |
insertRow(int index)
Insert a new empty row in the table. |
static boolean |
is(Element elem)
Determine whether the given Element can be cast to this class. |
static boolean |
is(JavaScriptObject o)
Determines whether the given JavaScriptObject can be cast to
this class. |
static boolean |
is(Node node)
Determine whether the given Node can be cast to this class. |
void |
setBorder(int border)
The width of the border around the table. |
void |
setCaption(TableCaptionElement caption)
The table's CAPTION, or null if none exists. |
void |
setCellPadding(int cellPadding)
Specifies the horizontal and vertical space between cell content and cell borders. |
void |
setCellSpacing(int cellSpacing)
Specifies the horizontal and vertical separation between cells. |
void |
setFrame(java.lang.String frame)
Specifies which external table borders to render. |
void |
setRules(java.lang.String rules)
Specifies which internal table borders to render. |
void |
setTFoot(TableSectionElement tFoot)
The table's TFOOT, or null if none exists. |
void |
setTHead(TableSectionElement tHead)
The table's THEAD, or null if none exists. |
void |
setWidth(java.lang.String width)
Specifies the desired table width. |
Methods inherited from class com.google.gwt.dom.client.Node |
---|
appendChild, cloneNode, getChild, getChildCount, getChildNodes, getFirstChild, getLastChild, getNextSibling, getNodeName, getNodeType, getNodeValue, getOwnerDocument, getParentElement, getParentNode, getPreviousSibling, hasChildNodes, hasParentElement, insertAfter, insertBefore, insertFirst, isOrHasChild, removeAllChildren, removeChild, removeFromParent, replaceChild, setNodeValue |
Methods inherited from class com.google.gwt.core.client.JavaScriptObject |
---|
cast, createArray, createArray, createFunction, createObject, equals, hashCode, toSource, toString |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final java.lang.String TAG
Constructor Detail |
---|
protected TableElement()
Method Detail |
---|
public static TableElement as(Element elem)
Element
is compatible with this class and
automatically typecast it.
public static boolean is(JavaScriptObject o)
JavaScriptObject
can be cast to
this class. A null
object will cause this method to
return false
.
public static boolean is(Node node)
Node
can be cast to this class.
A null
node will cause this method to return
false
.
public static boolean is(Element elem)
Element
can be cast to this class.
A null
node will cause this method to return
false
.
public final TableCaptionElement createCaption()
public final TableSectionElement createTFoot()
public final TableSectionElement createTHead()
public final void deleteCaption()
public final void deleteRow(int index)
index
- The index of the row to be deleted. This index starts from 0
and is relative to the logical order (not document order) of all
the rows contained inside the table. If the index is -1 the last
row in the table is deletedpublic final void deleteTFoot()
public final void deleteTHead()
public final int getBorder()
public final TableCaptionElement getCaption()
public final int getCellPadding()
public final int getCellSpacing()
public final java.lang.String getFrame()
public final NodeList<TableRowElement> getRows()
public final java.lang.String getRules()
public final NodeList<TableSectionElement> getTBodies()
public final TableSectionElement getTFoot()
public final TableSectionElement getTHead()
public final java.lang.String getWidth()
public final TableRowElement insertRow(int index)
index
- The row number where to insert a new row. This index starts
from 0 and is relative to the logical order (not document order)
of all the rows contained inside the table
public final void setBorder(int border)
public final void setCaption(TableCaptionElement caption)
public final void setCellPadding(int cellPadding)
public final void setCellSpacing(int cellSpacing)
public final void setFrame(java.lang.String frame)
public final void setRules(java.lang.String rules)
public final void setTFoot(TableSectionElement tFoot)
public final void setTHead(TableSectionElement tHead)
public final void setWidth(java.lang.String width)
|
GWT 2.7.0 | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |