The Combobox component provides client-side methods that allow you to interact
with the combobox from JavaScript. For a complete list of these methods and their
description visit the Client-Side Documentation page.
| | |
ASP.NET
<obout:Combobox id="cbo1" runat="server"> ... </obout:Combobox>
<input type="button" value="Open" onclick="cbo1.open()" />
<input type="button" value="Close" onclick="cbo1.close()" />
<input type="button" value="Get Text" onclick="alert(cbo1.getText())" />
<input type="button" value="Get Value" onclick="alert(cbo1.getValue())" />
<input type="button" value="Set Text" onclick="cbo1.setText('value');" />
<input type="button" value="Set Value" onclick="cbo1.setValue('text');" />
|
| | |
| "Thank you very very much, I have to say your support is the best." |
Guido Helmers |
|
| | |
|