Package | Description |
---|---|
org.fireweb.html |
Modifier and Type | Method and Description |
---|---|
Option |
Select.findOptionByValue(java.lang.String value)
Is looking for select's option with given value comply OptionGroup
elements.
|
Option |
Select.getOptionAtIndex(int index)
Is looking for select's option at given index comply OptionGroup
elements.
|
Option |
Select.getSelectedOption()
Is looking for current selected option.
|
Option |
Option.select(boolean select)
On/Off selected attribute without script call.
|
Option |
Option.setDisabled(boolean disabled)
Set "disabled" property and if element was draw call script at browser.
|
Option |
Option.setSelected(boolean selected)
Set "selected" property if element was draw.
|
Option |
Option.setValue(java.lang.String value)
Set "value" property and if element was draw call script at browser.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<Option> |
Select.getSelectedOptions()
Is looking for current selected option.
|
Modifier and Type | Method and Description |
---|---|
int |
Select.getIndexOfOption(Option option)
Is looking for index of given option comply OptionGroup elements.
|