Tagged Questions
0
votes
1answer
42 views
how to get data from TreeStore Extjs4.1
Ext JS 4.1
To get value data from 'Ext.data.Store', it simply to use
var data1 = store.data.items[0].data.fieldname;
or
var data1 = store.getAt(0).data.fieldname;
but, in 'Ext.data.TreeStore', ...
1
vote
1answer
42 views
How to load a tree on just active tab
I have two tabs and both tabs have tree. Since the trees take time to load, I am only trying to load a tree on the active tab panel(tab1), but even with autoload: false on my tab2's tree store, my ...
0
votes
1answer
520 views
Stop animation for expandAll on a tree panel
IE8 has a horrible time collapsing a medium sized tree panel with multiple columns. It is way too slow.
I am looking for ways to speedup the transitions from expandAll to collapseAll states.
One ...
0
votes
1answer
225 views
How to get child nodes after store load
Version: ExtJs 4.1
To change the child items I use this function:
TreeStore (Ext.data.TreeStore)
storeId : 'treeStore',
...
constructor: function( oConfig ) {
...
this.on( 'expand', function( oObj ...
0
votes
2answers
2k views
ExtJs - expandPath of TreePanel not working
My Treepanel has the id 'treePanel' and works just fine.
Example path:
/subfolder3/abc
Expanding all with expandAll() works with the tree panel but expandPath() does not work.
Now, after some ...
0
votes
1answer
475 views
EXTJS 4.1 how to remove filter without reloading of TreeStore
I have a TreeStore which fills with data from Json.
I'm applying filter on it.
if ( !filter.filterFn(node) ) {
node.remove();
}
For the first search attempt everything works great but ...
0
votes
3answers
1k views
ExtJs tree panel. How to scroll to a node
I have a Tree Panel which I expand programmatically.
When I expand a node, I would like to "jump to" this node, I mean to scroll to it.
How to scroll a tree panel to a specific node ?
UPDATE:
I use ...
0
votes
2answers
2k views
extjs 4.1 tree refresh a specific node
I would like to refresh a node of a tree.
I try something like that to refresh the root and it worked:
this.getStore('MyTreeStore').load({ params: { id: this.getId().getValue()} });
But now I ...
0
votes
0answers
544 views
extjs 4.1 tree add new node with server changes
In my application, the user can add some nodes to a tree node.
The tree is connected to a store which has autoload and autosync true.
The code to add a new node is this one:
var window = ...