onOptionsLoad

fires after a collection of options has been loaded from the server, but isn't parsed yet

void onOptionsLoad();

Example

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

Details

The event fires when updateCollection is called or when JSON with additional info is parsed.

Back to top