I have the following code. If I uncomment the call to .parse(), it works correctly and the events are displayed. If I use the .load() call, it does not display the event. For testing, I have the server hard coded to just return the same json string as the parse.
scheduler.config.multi_day = true;
scheduler.config.xml_date="%Y-%m-%d %H:%i";
//scheduler.config.server_utc = true;
scheduler.init('scheduler_here',new Date(2010,7,5),"month");
//scheduler.setLoadMode("month");
scheduler.load("/calendar.do?op=getEvents", "json");
/*
scheduler.parse([
{ start_date:"2009-7-1 6:00", end_date:"2009-7-1 8:00", text:"Some text"},
{ start_date:"2009-7-2 6:00", end_date:"2009-7-2 8:00", text:"Some text"}
],"json");
*/