I am new to Extjs4.1. I need to edit the grid data cell and edited value saved while pressing save button in grid toolbar. Its working nice. But changes are not reflected immediately.
When I press save button, the updated cell having old value. I need to click search button to see updated values.
I called store.load(); inside the saveFunction() and I can able to store edited values in DB. But the Grid is not displaying the updated values immediately in IE9.
Please someone help me to solve this issue.
Thanks in advance.
I have finally got the ans. I just loaded the store in ajax success
success: function(response, options) { store.load(); }.Thanks all.