load

loads data to the scheduler from an external data source

void load(string url, [function callback] );
urlstringthe server-side URL (may be a static file or a server-side script which outputs data in one of the supported formats)
callbackfunctionthe callback function

Example

scheduler.load("data"); // the format of loaded data is auto-detected
// or
scheduler.load("data",function(){
    alert("Data has been successfully loaded");
});

Related samples

Details

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.

Migration

In v5.2 and upper, scheduler detects the format of data automatically.

But before v5.2, the method included three parameters:

  • url - (string) the server-side URL (may be a static file or a server-side script which outputs data as XML)
  • type - (string) ('json', 'xml', 'ical') the data type. The default value - 'xml'
  • callback - (function) the callback function
See also
Change log

The second type parameter of the method has been removed in v5.2.

Back to top