| Method Details |
clearSelection
| public void clearSelection |
() |
Clears all existing selections on the client side.
|
setSelectedIndex
| public void setSelectedIndex |
(integer $index ) |
Selects an item based on zero-base index on the client side.
| Input |
| integer | $index | the index (zero-based) of the item to be selected |
| Output |
| Exception |
|
setSelectedIndices
| public void setSelectedIndices |
(array $indices ) |
Selects a list of item based on zero-base indices on the client side.
| Input |
| array | $indices | list of index of items to be selected |
| Output |
| Exception |
|
setSelectedValue
| public void setSelectedValue |
(string $value ) |
Sets selection by item value on the client side.
| Input |
| string | $value | the value of the item to be selected. |
| Output |
| Exception |
|
setSelectedValues
| public void setSelectedValues |
(array $values ) |
Sets selection by a list of item values on the client side.
| Input |
| array | $values | list of the selected item values |
| Output |
| Exception |
|