-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathREADME
More file actions
18 lines (14 loc) · 741 Bytes
/
README
File metadata and controls
18 lines (14 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Ext.ux.JumpableNestedList allows you to arbitrarily navigate (or "jump") to any node that exists within a NestedList. The best part of it, though, is that it preserves the automated navigation of the NestedList, and even traces the selection path to the selected node, just as if you had arrived at the destination via the normal hierarchical navigation.
Usage:
var jns = new Ext.ux.JumpableNestedList({
// specifies whether or not to trace the
// path in the hierarchy to the selected
// node
traceSelectionPath: true|false (d->true),
// prevents momentary flicker of parent
// list when navigating to node
// (requires cardlayout override)
hideSelectionPath: true|false (d->true)
});
Navigate to Node:
jns.jumpToNode(mynode)