how can the shcheduler load from responseXML
my responseXML:
shcheduler.load(response.getElementsByTagName(“data”)[0]) has error
Unfortunately the XML parser will not work with such custom XML ( component validates XML structure and ignores unknown XML data )
But you can change format of XML as
<data>
... events here ...
<mydata><mydata>
</data>
and use
var loader = new dtmlXMLLoaderObject();
loader.xmlDoc = myxml;
scheduler.on_load(loader);