Opened 11 years ago

Closed 11 years ago

#8678 closed bug (invalid)

Stack overflow at line 443 in IE8

Reported by: daredevel Owned by: daredevel
Priority: minor Milestone: 1.10.0
Component: ui.widget Version: 1.8.21
Keywords: Cc:
Blocked by: Blocking:

Description

I have the following situation:

$.widget("daredevel.tree", {
    _create:function () {
        this.element.treecheckbox(this.options);
        this.element.treecollapse(this.options);
        this.element.treednd(this.options);
    }
});

$.widget("daredevel.treecheckbox", {
    _create:function () {
        /*...*/
    }
});

$.widget("daredevel.treecollapse", {
    _create:function () {
        /*...*/
    }
});

$.widget("daredevel.treednd", {
    _create:function () {
        /*...*/
    }
});

The core components load other components. In Firefox, Opera and Chrome, everything is ok, but in IE8 the 2nd call fires error "Stack overflow al line 443". Order of calls doesn't matters. It simply crash on the 2nd call.

Change History (4)

comment:1 Changed 11 years ago by Scott González

Owner: set to daredevel
Status: newpending

http://jsbin.com/aguziq/2

You'll need to provide a reduced test case showing the problem, but I doubt this is a bug in jQuery UI.

comment:2 Changed 11 years ago by daredevel

Status: pendingnew

I'm not sure it is a bug in ui.widget, but I'm unable to find a solution and I don't think it is an impossible operation. Anyway, with Chrome, Opera, Firefox, it works. Only IE browsers crashes.

In this project, you can find described issue.

https://github.com/daredevel/jquery-tree

If you want, I'll prepare a reduced code example as soon as possible.

Last edited 11 years ago by daredevel (previous) (diff)

comment:3 Changed 11 years ago by Scott González

Status: newpending

We definitely need a reduced test case.

comment:4 Changed 11 years ago by trac-o-bot

Resolution: invalid
Status: pendingclosed

Because we get so many tickets, we often need to return them to the initial reporter for more information. If that person does not reply within 14 days, the ticket will automatically be closed, and that has happened in this case. If you still are interested in pursuing this issue, feel free to add a comment with the requested information and we will be happy to reopen the ticket if it is still valid. Thanks!

Note: See TracTickets for help on using tickets.