I have a treegrid exactly like the Kitchen Sink Tree Grid example:

http://ift.tt/1agf7yT

t


his grid actually extends Ext.tree.Panel and uses Ext.data.TreeStore

So how can I remove a row? With a regular grid using Ext.data.Store I can just get the selected row using SelectionModel().getSelection() and pass the returned record into the store.remove( ) but I dont see any such method for a treestore.


thanks..