loads data to the scheduler from an external data source
url | string | the server-side URL (may be a static file or a server-side script which outputs data in one of the supported formats) |
callback | function | the callback function |
scheduler.load("data"); // the format of loaded data is auto-detected
// or
scheduler.load("data",function(){
alert("Data has been successfully loaded");
});
Pay attention that in case of dynamic loading the callback function that is passed as a second parameter will be called only during the initial loading of data. While next portions of data will be loaded later, the callback function won't be called anymore.
If you need to call the callback function each time data is loaded into Scheduler, you can make use of the onLoadEnd event.
In v5.2 and upper, scheduler detects the format of data automatically.
But before v5.2, the method included three parameters:
The second type parameter of the method has been removed in v5.2.
Back to top