Opened 14 years ago
Closed 13 years ago
#3324 closed enhancement (invalid)
[treeview] multi-level async
Reported by: | Nathan | Owned by: | joern |
---|---|---|---|
Priority: | major | Milestone: | 1.3 |
Component: | plugin | Version: | 1.2.6 |
Keywords: | treeview async | Cc: | Nathan |
Blocked by: | Blocking: |
Description
I have found two limitations to the current treeview.async when loading multi-level async branches. Working update is attached.
Issues:
- If an async branch is loaded with {expanded: false}, the closed class is not applied, resulting in an empty branch being left open.
I have update:
if (this.expanded) {
current.addClass("open");
}
to
if (this.expanded) {
current.addClass("open"); } else { current.addClass("closed"); }
- If a async loaded branch has async itself, with hasChildren, the placeholder item remains visible and the secondary branch is not loaded until the item is toggled.
I have update the placeholder generating code to:
if (!this.expanded) {
current.addClass("hasChildren"); createNode.call({
text:"placeholder", id:"placeholder", children:[]
}, branch);
} else {
load(settings, this.id, branch, container);
}
Attachments (1)
Change History (3)
Changed 14 years ago by
Attachment: | jquery.treeview.async.js added |
---|
comment:1 Changed 14 years ago by
Cc: | Nathan added |
---|---|
Component: | ajax → plugin |
Keywords: | treeview added |
Owner: | set to joern |
comment:2 Changed 13 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
This is not a jQuery core bug. Please report plugin bugs to the plugin's author, or ask on the jQuery forums. jQuery UI bugs should be reported on the UI bug tracker, http://dev.jqueryui.com .
Update for mulit-level async loading.