Scheduler wont load events

This has got to be a noob error, but I’ve chased my tail and read the forums and I’m about to go to bed to see if I can dream up a solution.

Using MVC my Calendar.cshtml view shows a good calendar grid and includes this scheduler script:

<script type="text/javascript"> function init() { scheduler.config.xml_date = "%d.%m.%Y %H:%i"; scheduler.init("scheduler_here", null, "week"); scheduler.config.first_hour = 8; scheduler.config.last_hour = 22; scheduler.load("http://www.crystaparkinson.com/Crysta/Calendar_Data"); } </script>

You can check the live (test) data at the link there, it’s XML (default) type and here’s a sample:

[code]

<start_date>04.04.2013 18:30</start_date>
<end_date>04.04.2013 20:30</end_date>

11.04.2013 18:30 11.04.2013 20:30 [/code]

I can’t for the life of me figure why the XML data isn’t pulling into the scheduler. Any assistnace appreciated.

It may be related to cross-domain security ( default browser behavior ), which do not allow to load xml data from different domain.

If you are using
crystaparkinson.com/Crysta/Calendar_Data
as data url, html page must be loaded in browser also as
crystaparkinson.com/some_page

domain of xml data and html page must be the same.