1
votes

How can I reload the store and grid after clicking the Update or Cancel button of the tree editor

....
plugins: [{
        ptype: 'rowediting',
        clicksToMoveEditor: 1,
        autoCancel: false,
        listeners: {
           afteredit : function (editor, context, eOpts ){

               alert('How reload store and grid')
           },
           canceledit : function ( editor, context, eOpts ){
               alert('How reload store and grid')
           }
       }
    }],
...

Created an example in [FIDDLE]:https://fiddle.sencha.com/#view/editor&fiddle/2mg8

Thanks

1

1 Answers

2
votes
context.store.reload();

Write this in you event handler