Hi,
I have a canvasitem which results in a frozen browser when using it in inline/grid editing. The cause seems to be in the ListGrid.(GridBody).mouseup method:
Afaics this loop will never end as the value of the target variable never changes.
I am using Smartclient 8.3 from mid last year.
This is on chrome 23 on Linux.
gr. Martin
I have a canvasitem which results in a frozen browser when using it in inline/grid editing. The cause seems to be in the ListGrid.(GridBody).mouseup method:
Code:
while (target != this) { if (target.canvasItem && editForm.items.contains(target.canvasItem)) { return; } }
I am using Smartclient 8.3 from mid last year.
This is on chrome 23 on Linux.
gr. Martin
Comment