|
OnSelect TriggerThe onselect trigger is activated when a user selects an item from a combo box control's dropdown list. Syntax:onselect="Function(); Function2(); ..." Remarks:
Example: <xml id="toolbar"> <toolbar caption="OnSelect Example"> <control id=query type="combo" width=120 onselect="SetText(Selected:%QUERY%)"> <option caption="Item 1"> <option caption="Item 2"> </control> </toolbar> </xml> In the above example, selecting an item from the dropdown list, activates the OnSelect trigger to display the value of the combo control in the current browser. Compatibility Requires ToolbarBrowser v2.4.3 and later. |