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
Owner: | set to daredevel |
---|---|
Status: | new → pending |
comment:2 Changed 11 years ago by
Status: | pending → new |
---|
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.
comment:4 Changed 11 years ago by
Resolution: | → invalid |
---|---|
Status: | pending → closed |
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!
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.