|
|
The select element allows the selection of an option. The contained options can be directly accessed through the select element as a collection. See the <a href="http://www.w3.org/TR/REC-html40/interact/forms.html#edef-SELECT"> SELECT element definition </a> in HTML 4.0.
HTMLSelectElement ()
| HTMLSelectElement |
HTMLSelectElement (const HTMLSelectElement &other)
| HTMLSelectElement |
HTMLSelectElement (const Node &other)
| HTMLSelectElement |
HTMLSelectElement (HTMLSelectElementImpl *impl)
| HTMLSelectElement |
[protected]
HTMLSelectElement & operator = (const HTMLSelectElement &other)
| operator = |
Reimplemented from HTMLElement.
HTMLSelectElement & operator = (const Node &other)
| operator = |
Reimplemented from HTMLElement.
~HTMLSelectElement ()
| ~HTMLSelectElement |
DOMString type ()
| type |
[const]
The type of control created.
long selectedIndex ()
| selectedIndex |
[const]
The ordinal index of the selected option. The value -1 is returned if no element is selected. If multiple options are selected, the index of the first selected option is returned.
void setSelectedIndex ( long )
| setSelectedIndex |
see selectedIndex
DOMString value ()
| value |
[const]
The current form control value.
void setValue ( const DOMString & )
| setValue |
see value
long length ()
| length |
[const]
The number of options in this <code> SELECT </code> .
HTMLFormElement form ()
| form |
[const]
Returns the <code> FORM </code> element containing this control. Returns null if this control is not within the context of a form.
HTMLCollection options ()
| options |
[const]
The collection of <code> OPTION </code> elements contained by this element.
bool disabled ()
| disabled |
[const]
The control is unavailable in this context. See the <a href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-disabled"> disabled attribute definition </a> in HTML 4.0.
void setDisabled ( bool )
| setDisabled |
see disabled
bool multiple ()
| multiple |
[const]
If true, multiple <code> OPTION </code> elements may be selected in this <code> SELECT </code> . See the <a href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-multiple"> multiple attribute definition </a> in HTML 4.0.
void setMultiple ( bool )
| setMultiple |
see multiple
DOMString name ()
| name |
[const]
Form control or object name when submitted with a form. See the <a href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-name-SELECT"> name attribute definition </a> in HTML 4.0.
void setName ( const DOMString & )
| setName |
see name
long size ()
| size |
[const]
Number of visible rows. See the <a href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-size-SELECT"> size attribute definition </a> in HTML 4.0.
void setSize ( long )
| setSize |
see size
long tabIndex ()
| tabIndex |
[const]
Index that represents the element's position in the tabbing order. See the <a href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-tabindex"> tabindex attribute definition </a> in HTML 4.0.
void setTabIndex ( long )
| setTabIndex |
see tabIndex
void add ( const HTMLElement &element, const HTMLElement &before )
| add |
Add a new element to the collection of <code> OPTION </code> elements for this <code> SELECT </code> .
Parameters:
element | The element to add. |
before | The element to insert before, or 0 for the tail of the list. |
void remove ( long index )
| remove |
Remove an element from the collection of <code> OPTION </code> elements for this <code> SELECT </code> . Does nothing if no element has the given index.
Parameters:
index | The index of the item to remove. |
void blur ( )
| blur |
Removes keyboard focus from this element.
void focus ( )
| focus |
Gives keyboard focus to this element.
Generated by: root@daffy.perf.redhat.com on Mon Jul 14 13:28:10 2003, using kdoc 2.0a53. |