pass two id s in extjs 4 tree multiSelect and pass one id in single click
问题 When a user selects one or many rows in my tree, I would like to set the row's IDs onto the url of my store proxy. Here is my current code: var treePanel = Ext.create('Ext.tree.Panel', { id: 'tree-panel', title: 'Taxonomy', region:'west', collapsible: true, split: true, multiSelect: true, height:'100%', width: '20%', minWidth: 100, rootVisible: false, autoScroll: true, store: store, viewConfig: { allowCopy: true, plugins: { ptype: 'treeviewdragdrop', appendOnly: true, ddGroup: 'selDD' } } });