setText
|
Javascript function that sets the Text of the combobox to the specified string
|
setValue
|
Javascript function that sets the Value of the combobox to the specified string
- triggers the function specified in the server-side OnClientChange property.
|
getText
|
Returns the Text of the combobox.
|
getValue
|
Returns the Value of the combobox.
|
open
|
Used to open (expand) a combobox.
|
close
|
Used to close (collapse) a combobox.
|
focus
|
Moves the focus to the combobox.
|
addOption
|
Client-side method used to add new options to the combobox.
Usage: cbo1.addOption(value, text, icon, tooltip);
|
addCustomOption
|
Client-side method used to add new custom options to the combobox.
Usage: cbo1.addCustomOption(html);
|
deleteOption
|
Client-side method used to delete options from the combobox.
Usage: cbo1.deleteOption(option_index);
|
clearOptions
|
Client-side method used to remove all the options from the combobox.
Usage: cbo1.clearOptions();
|