onDataProcessorReady

fires on the dp.init(gantt) call

void onDataProcessorReady(object DataProcessor);
DataProcessorobjectthe DataProcessor object

Example

gantt.attachEvent("onDataProcessorReady",function(DataProcessor){
    // any custom logic here
});

Details

You can use this event to add handlers for DataProcessor from the app code.

See also
Back to top