Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    ListGrid: infinite loop in ListGrid.mouseUp

    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:
    Code:
                while (target != this) {
                    if (target.canvasItem && editForm.items.contains(target.canvasItem)) {
                        return;
                    }
                }
    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
    Last edited by martintaal; 22 Feb 2013, 06:19.

    #2
    The latest code doesn't have this issue.

    Comment

    Working...
    X