callEvent
calls an inner event
function callEvent( // the event name, case-insensitive name: string, // the array of the event parameters params: array): boolean
Returns
Section titled “Returns”boolean
false, if some of the event handlers return false. Otherwise, true
Example
Section titled “Example”const grid = webix.grid({ autoConfig: true, data });grid.callEvent("onCustomReady", { userId: 12 });
Details
Section titled “Details”Normally, events are called automatically and you don’t need to use this method.
See also
Section titled “See also”Articles
API