triggerEvent
Triggers an events for a control, or the Gebra Suite app itself. Some events are on Gebra Suite App level (like e.g. onRecordSaved ). Other events are on control level (like e.g. onClick)
Parameters
Example Usages
app.triggerEvent("click", "myButton"); //This triggers a button Click for the control "myButton"
app.triggerEvent("recordSaved"); //This triggers the event, that would otherwise occur if a record was savedapp.triggerEvent("onClick", "myButton"); //This triggers a button Click for the control "myButton"
app.triggerEvent("onRecordSaved"); //This triggers the event, that would otherwise occur if a record was savedReturn Values
Last updated