mask.length undefined

HI all,

I am having a heck of time debuging this js error. Everything was going well until I added the data.aspx

data.aspx is returning this:

<?xml version="1.0"?>

- - -<start_date>

</start_date> -<end_date>

</end_date> -

- -<start_date>

</start_date> -<end_date>

</end_date> -

- -<start_date>

</start_date> -<end_date>

</end_date> -

- -<start_date>

</start_date> -<end_date>

</end_date> -

The calendar does not load and I am getting this error?
SCRIPT5007: Unable to get value of the property ‘length’: object is null or undefined
dhtmlxscheduler_debug.js, line 2612 character 17

Any idea where I am getting crossed up? I am also new to MS MVC

Calendar looks great and I hope to impliment it in our application with a full lic.

Thanks,

Todd

Ok solved my own problem.

I got the commented out line from the blog, replaced it with the line from sample project and this fixed my error.

[code]function init() {
// scheduler.config.xml_date = “m/d/Y H:m”; // format of dates in XML Note: this did not work
scheduler.config.xml_date = “%m/%d/%Y %H:%i”;
scheduler.init(“scheduler_here”, new Date(2010, 6, 1), “month”);
scheduler.load("/Calendar/Data"); //path to the newly created action

 }[/code]