All Packages Class Hierarchy This Package Previous Next Index
Interface org.w3c.dom.html.HTMLSelectElement
- public interface HTMLSelectElement
- extends HTMLElement
The select element allows the selection of an option. The containedoptions
can be directly accessed through the select element as acollection. See
the SELECT element definition in HTML 4.0.
-
add(HTMLElement, HTMLElement)
- Add a new element to the collection of
OPTION elementsfor
this SELECT.
-
blur()
- Removes keyboard focus from this element.
-
focus()
- Gives keyboard focus to this element.
-
getDisabled()
- The control is unavailable in this context.
-
getForm()
- Returns the
FORM element containing this control.Returns
null if this control is not within the context of a form.
-
getLength()
- The number of options in this
SELECT.
-
getMultiple()
- If true, multiple
OPTION elements may be selected in this
SELECT.
-
getName()
- Form control or object name when submitted with a form.
-
getOptions()
- The collection of
OPTION elements contained by this element.
-
getSelectedIndex()
- The ordinal index of the selected option.
-
getSize()
- Number of visible rows.
-
getTabIndex()
- Index that represents the element's position in the tabbing order.
-
getType()
- The type of control created.
-
getValue()
- The current form control value.
-
remove(int)
- Remove an element from the collection of
OPTION elementsfor
this SELECT.
-
setDisabled(boolean)
-
-
setMultiple(boolean)
-
-
setName(String)
-
-
setSelectedIndex(int)
-
-
setSize(int)
-
-
setTabIndex(int)
-
-
setValue(String)
-
getType
public abstract String getType()
- The type of control created.
getSelectedIndex
public abstract int getSelectedIndex()
- The ordinal index of the selected option. The value -1 is returned ifno
element is selected. If multiple options are selected, the index ofthe
first selected option is returned.
setSelectedIndex
public abstract void setSelectedIndex(int selectedIndex)
getValue
public abstract String getValue()
- The current form control value.
setValue
public abstract void setValue(String value)
getLength
public abstract int getLength()
- The number of options in this
SELECT.
getForm
public abstract HTMLFormElement getForm()
- Returns the
FORM element containing this control.Returns
null if this control is not within the context of a form.
getOptions
public abstract HTMLCollection getOptions()
- The collection of
OPTION elements contained by this element.
getDisabled
public abstract boolean getDisabled()
- The control is unavailable in this context. See the disabled attribute
definition in HTML 4.0.
setDisabled
public abstract void setDisabled(boolean disabled)
getMultiple
public abstract boolean getMultiple()
- If true, multiple
OPTION elements may be selected in this
SELECT. See the multiple attribute definition in HTML 4.0.
setMultiple
public abstract void setMultiple(boolean multiple)
getName
public abstract String getName()
- Form control or object name when submitted with a form. See the name
attribute definition in HTML 4.0.
setName
public abstract void setName(String name)
getSize
public abstract int getSize()
- Number of visible rows. See the size attribute definition in HTML 4.0.
setSize
public abstract void setSize(int size)
getTabIndex
public abstract int getTabIndex()
- Index that represents the element's position in the tabbing order. See
the tabindex attribute definition in HTML 4.0.
setTabIndex
public abstract void setTabIndex(int tabIndex)
add
public abstract void add(HTMLElement element,
HTMLElement before)
- Add a new element to the collection of
OPTION elementsfor
this SELECT.
- Parameters:
- element - The element to add.
- before - The element to insert before, or NULL for the head of the
list.
remove
public abstract void remove(int index)
- Remove an element from the collection of
OPTION elementsfor
this SELECT. Does nothing if no element has the givenindex.
- Parameters:
- index - The index of the item to remove.
blur
public abstract void blur()
- Removes keyboard focus from this element.
focus
public abstract void focus()
- Gives keyboard focus to this element.
All Packages Class Hierarchy This Package Previous Next Index