You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
37
-
While next portions of data will be loaded later, the callback function won't be called anymore.
36
+
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.
37
+
While the next portions of data will be loaded later, the callback function won't be called anymore.
38
38
39
-
If you need to call the callback function each time data is loaded into Scheduler, you can make use of the [onLoadEnd](api/event/onloadend.md) event.
39
+
If you need to call the callback function each time data is loaded into Scheduler, you can use the [`onLoadEnd`](api/event/onloadend.md) event.
40
40
41
41
## Migration
42
42
43
-
In v5.2 and upper, scheduler detects the format of data automatically.
43
+
In v5.2 and later, Scheduler detects the data format automatically.
44
44
45
45
But before v5.2, the method included three parameters:
46
46
47
-
-**url** - (*string*) the server-side URL (may be a static file or a server-side script which outputs data as XML)
48
-
-**type** - (*string*) <i>('json', 'xml', 'ical')</i> the data type. The default value - <i>'xml'</i>
49
-
-**callback** - (*function*) the callback function
47
+
-`url` - (*string*) the server-side URL (may be a static file or a server-side script that outputs data as XML)
48
+
-`type` - (*string*) (*'json', 'xml', 'ical'*) the data type. The default value is *'xml'*
49
+
-`callback` - (*function*) the callback function
50
50
51
51
### Related API
52
52
-[onLoadEnd](api/event/onloadend.md)
@@ -59,4 +59,4 @@ But before v5.2, the method included three parameters:
59
59
-[Loading Data](guides/loading-data.md)
60
60
61
61
### Change log
62
-
- The second **type** parameter of the method has been removed in v5.2.
62
+
- The second `type` parameter of the method was removed in v5.2.
0 commit comments