Package | Description |
---|---|
org.fireweb.html |
Modifier and Type | Class and Description |
---|---|
class |
CheckBox
<input type="checkbox" /> defines a checkbox.
|
class |
InputButton
<input type="button" /> defines a clickable button, that does not do
anything.
|
class |
InputFile
<input type="file" /> is used for file uploads.
|
class |
InputImage
<input type="image" /> defines an image as a submit button.
|
class |
InputPassword
<input type="password" /> defines a password field.
|
class |
InputText
<input type="text" /> defines a one-line input field that a user can
enter text into.
|
class |
RadioButton
<input type="radio" /> defines a radio button.
|
Modifier and Type | Method and Description |
---|---|
Input |
Input.assignValue(java.lang.String value)
Sets value of element without drawing attribute changes.
|
Input |
Input.setDisabled(boolean disabled)
Set "disabled" property and if element was draw call script at browser.
|
Input |
Input.setName(java.lang.String name)
Set "name" property and if element was draw call script at browser.
|
Input |
Input.setPlaceholder(java.lang.String placeholder)
Set short hint is displayed in the input field before the user enters a
value.
|
Input |
Input.setReadOnly(boolean readOnly)
Set "readOnly" property and if element was draw call script at browser.
|
Input |
Input.setValue(java.lang.String value)
Set "value" property and if element was draw call script at browser.
|