Hi,
I am using Ext.grid.EditorGridPanel(EXTJS 3.4) I want to filter the data/record in the grid.
Store of grid having events like add, update, remove, load, datachanged etc. are attached for the calculation of the row data like price, discount… etc.
I used Ext.ux.grid.GridFilters (local filter) to apply filters in the grid but it applies filter on the store and store fires above events. So after filter it show the Calculation data depends on the filtered data its true but I want Calculation Data on all records of the grid and not on the filter data.
So I want to hide row after filter like we set display property of row to ‘none’ like below example grid.getView().getRow(rowIndex).style.display = 'none';
Is there any plug-in for this or another way to use the Ext.ux.grid.GridFilters so I can work around this ?
Suggestions are welcome, Thanks in advance.