Search and Top Navigation
#8678 closed bug (invalid)
Opened October 15, 2012 02:46PM UTC
Closed October 30, 2012 09:14AM UTC
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.
Attachments (0)
Change History (4)
Changed October 15, 2012 02:55PM UTC by comment:1
owner: | → daredevel |
---|---|
status: | new → pending |
Changed October 15, 2012 03:07PM UTC by comment:2
_comment0: | 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. → 1350313679646476 |
---|---|
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.
Changed October 15, 2012 03:45PM UTC by comment:3
status: | new → pending |
---|
We definitely need a reduced test case.
Changed October 30, 2012 09:14AM UTC by comment:4
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.