Simple Scheduler Load JSON Fails

I must be missing something simple but cannot find it. I’m using the free version right now. Can someone tell me why this is not loading my JSON events…

scheduler.config.xml_date = "%Y-%m-%d %H:%i"; dhtmlxLayout.cells("a").attachScheduler(new Date(2013,11,1,0,0,0,0), "month"); scheduler.load("events.json", "json");
events.json looks like this…

{"data":[{"id":"1","start_date":"2013-12-06 00:00","end_date":"2013-12-06 00:00","text":"blah blah blah"}]}

I need the scheduler to be initialed in a layout cell using attachScheduler() and it must be JSON, not xml.

Thanks!

Never mind I figured it out. I missed that I had this in my code still…

scheduler.config.first_hour = 10;
scheduler.config.last_hour = 20;

So it was filtering out all my allday (00:00) events.