calls an inner event
name | string | the event name, case-insensitive |
params | array | an array of the event related data |
boolean | false, if some of the event handlers returns false. Otherwise, true |
//invokes triggering handlers of the 'onResize' event
var check = dtable.callEvent("onResize", [...]);
Normally, events are called automatically and you needn't to use this method.
Back to top