Hi,
As you can verify on this fiddle, list menu filtering on "Name" column is not working.
Cause:
loadRawData is not firing "load" event. But according to ExtJS docs, it should fire load event as well.
Workaround:
ThanksCode:store.fireEvent('load', store, store.getRange(), true);
Yogesh