Skip to content

callEvent

calls an inner event

function callEvent(
// the event name, case-insensitive
name: string,
// the array of the event parameters
params: array
): boolean

boolean false, if some of the event handlers return false. Otherwise, true

const grid = webix.grid({ autoConfig: true, data });
grid.callEvent("onCustomReady", { userId: 12 });

Normally, events are called automatically and you don’t need to use this method.

Articles

API