Open GoogleCodeExporter opened 9 years ago
operating system is Windows XP.
Original comment by murali...@gmail.com
on 19 Jul 2010 at 10:39
yes, I have gotten this error in the past. This happens when the MonthView
tries to calculate the size of its cells, but the Widget is not yet completely
rendered in your Browser. As a result, the size comes back as a negative
number, causing a crash.
In the DayView, we solve this in line 192 where we check to make sure the
height is > 0.
I'll need to add similar logic to the MonthView .... I'll need to run some
tests, but this shouldn't be too bad ....
Original comment by Brad.Ryd...@gmail.com
on 20 Jul 2010 at 12:11
[deleted comment]
when are you planing to fix this issue ?
Original comment by MaryKise...@gmail.com
on 22 Aug 2010 at 10:29
Using DeferredCommand can solve this problem temporarily.
DeferredCommand.addCommand(
new Command() {
public void execute() {
calendar.resumeLayout();
}
}
);
Original comment by yy.yo...@gmail.com
on 10 Oct 2010 at 11:13
Original issue reported on code.google.com by
murali...@gmail.com
on 19 Jul 2010 at 10:35Attachments: