DomTemplate


Dom_FormInput

Class Dom_FormInput

Dom_FormElement
|
+--Dom_FormInput

public class Dom_FormInput
extends Dom_FormElement

A class that handle a forms input element.


Fields inherited from Dom_FormElement
element, form
Method Summary
string

getValue()

Return the value of theis form element

boolean

isChecked()

Get the checked state of this element

void

setChecked(boolean b)

Set the checked attribute of an element

void

setValue(string value)

Set the value of this form element.

Methods inherited from Dom_FormElement
disable, getAttribute, getForm, getName, getNode, getTemplate, getType, getValue, isDisabled, setAttribute, setName, setValue

Method Detail

getValue

public string getValue()

Return the value of theis form element


isChecked

public boolean isChecked()

Get the checked state of this element


setChecked

public void setChecked(boolean b)

Set the checked attribute of an element


setValue

public void setValue(string value)

Set the value of this form element.


DomTemplate