Package | Description |
---|---|
com.google.gwt.dom.client |
Classes for low-level DOM programming.
|
Modifier and Type | Method and Description |
---|---|
static SelectElement |
SelectElement.as(Element elem)
Assert that the given
Element is compatible with this class and
automatically typecast it. |
SelectElement |
Document.createSelectElement()
Creates a <select> element.
|
SelectElement |
Document.createSelectElement(boolean multiple)
Creates a <select> element.
|
SelectElement |
DOMImpl.createSelectElement(Document doc,
boolean multiple) |
SelectElement |
DOMImplTrident.createSelectElement(Document doc,
boolean multiple)
Supports creating a select control with the multiple attribute to work
around a bug in IE6 where changing the multiple attribute in a setAttribute
call can cause subsequent setSelected calls to misbehave.
|
Modifier and Type | Method and Description |
---|---|
void |
DOMImpl.selectAdd(SelectElement select,
OptionElement option,
OptionElement before) |
void |
DOMImplTrident.selectAdd(SelectElement select,
OptionElement option,
OptionElement before) |
void |
DOMImpl.selectClear(SelectElement select) |
int |
DOMImpl.selectGetLength(SelectElement select) |
NodeList<OptionElement> |
DOMImpl.selectGetOptions(SelectElement select) |
void |
DOMImpl.selectRemoveOption(SelectElement select,
int index) |
void |
DOMImplIE9.selectRemoveOption(SelectElement select,
int index) |