What steps will reproduce the problem? 1. Setup some events in JSON, ie "2009-09-07" 2. Load page
What is the expected output? What do you see instead? Expect: Calendar joy; Instead: IE6: this.StartDateTime is null or not an object (line 123, char 6)
What version of the product are you using? On what operating system? jMonthCalendar 1.3.2 beta 2 on Win 2000/IE6
Please provide any additional information below.
Comment #1
Posted on Sep 9, 2009 by Quick BearFix: Just wrap with a check to make sure it's not null as follows:
if(this.StartDateTime != null) {
if(ev.EndDateTime) {
if (typeof ev.EndDateTime == 'object' && ev.EndDateTime.getDate) {
this.EndDateTime = ev.EndDateTime; }
if (typeof ev.EndDateTime == 'string' && ev.EndDateTime.split) {
this.EndDateTime = _getJSONDate(ev.EndDateTime); }
} else {
this.EndDateTime = this.StartDateTime.clone();
}
if
(this.StartDateTime.clone().clearTime().compareTo(this.EndDateTime.clone().clearTime())
== 0) {
single.push(this);
} else if
(this.StartDateTime.clone().clearTime().compareTo(this.EndDateTime.clone().clearTime())
== -1) {
multi.push(this);
}
}
Comment #2
Posted on Apr 8, 2010 by Massive Horse(No comment was entered for this change.)
Status: Fixed
Labels:
Type-Defect
Priority-Medium