Search
Schedule.fromXmlDocument Method
See Also
 






Loads schedule data from specified XML Document.

Namespace: MindFusion.Scheduling
File: Schedule.js

 Syntax

JavaScript  Copy Code

function fromXmlDocument (document)

 Parameters

document

Document. A DOM Document object containing XML-serialized schedule data.

 Example

The following method loads the schedule from a file:

JavaScript  Copy Code
function fromXml(xmldoc) {
 calendar.schedule.fromXmlDocument(xmldoc);
}

 See Also