extjsgridpanel

Get all rows even the filtered rows in gridpanel extjs


I have the gridpanel in extjs with filter in the header so the end-users can make the filter, updating row and then make another filter and continue updating row ...

After finishing updating the rows, the user will click on save button and send all the data to server for updating, but i can only get the visible row in gridpanel.

Could sombody show me how can i get all the updated rows (which is hidden by filter) in gridpanel using extjs?

Thanks in advance.


Solution

  • After checking the api document from Ext JS, I can retrieve all records including the filtered out one using getDataSource function.