|
OnActivate TriggerThe onactivate trigger is fired when a toolbar is activated. Syntax:onactivate="Function(); Function2(); ..." Remarks:
Example: <xml id="toolbar"> <control type="toolbar"> <toolbar caption="OnActivate Example"> <button
onactivate="SetCaption(this,'Hello World');"> </button> </control> </toolbar> </xml> In the above example, when a toolbar is activated, the button caption is set to "Hello World". |