Hi,
With Internet Explorer less than 9.0, we can have a bug with this method.
In the case where the method return 0, will the following sentence:
$R.style.height = (this.getScrollableHeight() - 1) + "px";
IE will crash.
I suggest to change the method like that:
this.getScrollableHeight = function () {
var $V;
if (this.heightSpec === 'Fixed' || this.heightSpec === "Parent100Pct") {
$V = this.height ? this.height : 0;
} else {
if (this.innerHeightTree) {
var $2c = DayPilot.sh($f.nav.scroll);
if ($2c === 0) {
$V = this.innerHeightTree;
} else {
$V = this.innerHeightTree + $2c;
}
} else {
$V = this.rows.length * this.eventHeight;
}
};
if (this.heightSpec === 'Max' && $V > this.height) {
$V = this.height;
};
return $V <= 0 ? 1 : $V;
};
Cheers