Search
Schedule.fromJson Method
See Also
 






Deserializes the Schedule from a JSON string.

Namespace: MindFusion.Scheduling
File: Schedule.js

 Syntax

JavaScript  Copy Code

function fromJson (json)

 Parameters

json

String. A string created by the toJson method.

 Example

The following method loads the schedule from a Json file:

JavaScript  Copy Code
function fromXml(json_doc) {
 calendar.schedule.fromJson(json_doc);
}

 See Also