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>
I can’t for the life of me figure why the XML data isn’t pulling into the scheduler. Any assistnace appreciated.