org.kde.koala
public class HTMLInputElement extends HTMLElement
UNKNOWN: Form control.
Constructor Summary | |
---|---|
protected | HTMLInputElement(Class dummy) |
HTMLInputElement() | |
HTMLInputElement(HTMLInputElement other) | |
HTMLInputElement(Node other) |
Method Summary | |
---|---|
String | accept()
A comma-separated list of content types that a server
processing this form will handle correctly. |
String | accessKey()
A single character access key to give access to the form
control. |
String | align()
Aligns this object (vertically or horizontally) with respect to
its surrounding text. |
String | alt()
Alternate text for user agents not rendering the normal content
of this element. |
void | blur()
Removes keyboard focus from this element. |
boolean | checked()
Describes whether a radio or check box is checked, when
type has the value "Radio" or "Checkbox". |
void | click()
Simulate a mouse-click. |
boolean | defaultChecked()
When type has the value "Radio" or "Checkbox",
stores the initial value of the checked
attribute. |
String | defaultValue()
Stores the initial control value (i.e., the initial value of
value ). |
boolean | disabled()
The control is unavailable in this context. |
void | focus()
Gives keyboard focus to this element. |
HTMLFormElement | formElement()
### KDE 4.0: remove. |
long | getSize()
Size information. |
long | maxLength()
Maximum number of characters for text fields, when type
has the value "Text" or "Password". |
String | name()
Form control or object name when submitted with a form. |
boolean | readOnly()
This control is read-only. |
void | select()
Select the contents of the text area. |
void | setAccept(String arg1)
see accept |
void | setAccessKey(String arg1)
see accessKey |
void | setAlign(String arg1)
see align |
void | setAlt(String arg1)
see alt |
void | setChecked(boolean arg1)
see checked |
void | setDefaultChecked(boolean arg1)
see defaultChecked |
void | setDefaultValue(String arg1)
see defaultValue |
void | setDisabled(boolean arg1)
see disabled |
void | setMaxLength(long arg1)
see maxLength |
void | setName(String arg1)
see name |
void | setReadOnly(boolean arg1)
see readOnly |
void | setSize(long arg1)
see getSize |
void | setSrc(String arg1)
see src |
void | setTabIndex(long arg1)
see tabIndex |
void | setType(String arg1)
see type |
void | setUseMap(String arg1)
see useMap |
void | setValue(String arg1)
see value |
String | src()
When the type attribute has the value "Image",
this attribute specifies the location of the image to be used
to decorate the graphical submit button. |
long | tabIndex()
Index that represents the element's position in the tabbing
order. |
String | type()
The type of control created. |
String | useMap()
Use client-side image map. |
String | value()
The current form control value. |
UNKNOWN: A comma-separated list of content types that a server processing this form will handle correctly.
UNKNOWN: A single character access key to give access to the form control.
UNKNOWN: Aligns this object (vertically or horizontally) with respect to its surrounding text.
UNKNOWN: Alternate text for user agents not rendering the normal content of this element.
UNKNOWN: Removes keyboard focus from this element.
type
has the value "Radio" or "Checkbox". The value is
true if explicitly set. Represents the current state of the
checkbox or radio button. See the
checked attribute definition in HTML 4.0.UNKNOWN: Describes whether a radio or check box is checked, when type
has the value "Radio" or "Checkbox".
INPUT
elements whose
type
attribute has one of the following values:
"Button", "Checkbox", "Radio", "Reset", or "Submit".UNKNOWN: Simulate a mouse-click.
type
has the value "Radio" or "Checkbox",
stores the initial value of the checked
attribute.UNKNOWN: When type
has the value "Radio" or "Checkbox", stores the initial value of the checked
attribute.
value
).UNKNOWN: Stores the initial control value (i.
UNKNOWN: The control is unavailable in this context.
UNKNOWN: Gives keyboard focus to this element.
UNKNOWN: ### KDE 4.
UNKNOWN: Size information.
type
has the value "Text" or "Password". See the
maxlength attribute definition in HTML 4.0.UNKNOWN: Maximum number of characters for text fields, when type
has the value "Text" or "Password".
UNKNOWN: Form control or object name when submitted with a form.
type
has the
value "text" or "password" only. See the
readonly attribute definition in HTML 4.0.UNKNOWN: This control is read-only.
INPUT
elements whose type
attribute has one of the
following values: "Text", "File", or "Password".UNKNOWN: Select the contents of the text area.
UNKNOWN: see accept
UNKNOWN: see accessKey
UNKNOWN: see align
UNKNOWN: see alt
UNKNOWN: see checked
UNKNOWN: see defaultChecked
UNKNOWN: see defaultValue
UNKNOWN: see disabled
UNKNOWN: see maxLength
UNKNOWN: see name
UNKNOWN: see readOnly
UNKNOWN: see getSize
UNKNOWN: see src
UNKNOWN: see tabIndex
UNKNOWN: see type
UNKNOWN: see useMap
UNKNOWN: see value
type
attribute has the value "Image",
this attribute specifies the location of the image to be used
to decorate the graphical submit button. See the
src attribute definition in HTML 4.0.UNKNOWN: When the type
attribute has the value "Image", this attribute specifies the location of the image to be used to decorate the graphical submit button.
UNKNOWN: Index that represents the element's position in the tabbing order.
UNKNOWN: The type of control created.
UNKNOWN: Use client-side image map.
UNKNOWN: The current form control value.