Events only displaying in Month View

I’m using dhtmlxScheduler for a work project - It seems that the events only show up in the Month View, but not Day or Week Views. If anyone can help, it would be hugely appreciated. Thanks!

I use this code to initialize and load the scheduler:

scheduler.config.xml_date="%Y-%m-%d %H:%i:%s";
scheduler.init('scheduler-div',null,"month");
scheduler.load("schedulingData.php?uid="+(new Date()).valueOf()); //no caching

schedulingData.php echoes XML of the following structure:

<?xml version="1.0"?>
<data>

<event id="1"><start_date>2010-06-08 12:00:00</start_date><end_date>2010-06-11 12:00:00</end_date><text><![CDATA[Act6ivity Something]]></text><details><![CDATA[text here]]></details></event>

<event id="2"><start_date>2010-06-09 12:00:00</start_date><end_date>2010-06-11 12:00:00</end_date><text><![CDATA[Fresh after changes!]]></text><details><![CDATA[text here]]></details></event>

</data>

My apologies if there is some small detail I’m missing in syntax or the XML structure. Thanks for any feedback

add

scheduler.config.multi_day = true;

to see multi-day events in Day and Week views.