Hybrid View
-
14 Mar 2012 3:07 AM #1
Ext.tree.TreePanel: How to add a filter?
Ext.tree.TreePanel: How to add a filter?
Hi,
I have a tree in my application(ExtJs 3.4), how I can add a filter?
My code:
Ps: the tree is like a list, there are no nodes with deep more than "one"...Code:var treeLoader = new Ext.tree.TreeLoader({ dataUrl: this.entrypoint, baseParams: {m:this.modName,a:'get-nodes'} }); var clientiRootNode = new Ext.tree.AsyncTreeNode({id: 'clienti-root'}); this.treePanel = new Ext.tree.TreePanel({ loader: treeLoader, autoScroll: true, animate: true, autoScroll: true, border: false, title:'Clienti', // enableDD: true, root: clientiRootNode, selModel: new Ext.tree.DefaultSelectionModel(), lines: false, rootVisible: false, // tbar: tbar, //NOTA: se aggiungo la toolbar, quando nascondo il tree panel, il nodo root perde i nodi figlio listeners: { beforeexpand: function(p){p.getRootNode().expand();} } });
-
14 Mar 2012 7:45 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,682
- Vote Rating
- 435
natively it doesn't support filtering
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.


Reply With Quote