vote up 0 vote down star

Hello all,

I am a new user of Extjs library, I created a grid successfully and it works just fine, now I want to use Ext.grid.GridFilters to add filtering to my grid, however I don't see this class in the Extjs source code files, where I can get the required files?

flag

29% accept rate

2 Answers

vote up 1 vote down

Filtering is a custom thing you have to implement by yourself. There are a few community add-ons which make it easy, but start by looking at the actual grid STORE instead of the grid panel. The store contains the data and supports filtering. Once the data is filtered, the store will raise it's data changed event and as long as the grid is wired accordingly you will see the filtered recordset in the grid. For more info I'd check out their example pages and read the source there.

link|flag
vote up 1 vote down

The community-supported plugin for grid filtering is found in this forum thread.

link|flag
another useful link: extjs.com/learn/Ext_FAQ_Grid#Filtering – dalbaeb Sep 1 at 17:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.