HI All,

I am trying to show a GridPanel with some filtering in the column but something seems not to work. Here is the example Grid. As you can see I have a GridFilter on the name column with some events attached just to see if they are fired... apparently only the "activate" event is fired.
The main problem is that if there is an event attached to the filters, the filter itself seems not to work anymore: usually you are able to set the filter and then just press enter to enable it, with the filter you have to click the checkbox to activate it and when you change it it won't refilter unless you disable and reenable it.

What I am simply trying to do is to show the count in the status bar at the bottom so I was hoping in something as easy as "DevicesCount.setText(DeviceStore.getCount()); " in the FilterUpdate event but again, this is not fired at all...

Any idea?

<ext:GridPanel ID="GridAvailableDevices" Width="500" runat="server" Height="300" AutoExpandColumn="name" Title="Available Devices">
        <Store>
            <ext:Store runat="server" ID="DeviceStore" WarningOnDirty="false">
                <Proxy>
                    <ext:HttpProxy Url="/Devices/List/1" Method="GET">
                    </ext:HttpProxy>
                </Proxy>
                <Reader>
                    <ext:JsonReader IDProperty="Id">
                        <Fields>
                            <ext:RecordField Name="id" Mapping="Id"></ext:RecordField>
                            <ext:RecordField Name="name" Mapping="Name"></ext:RecordField>
                        </Fields>
                    </ext:JsonReader>
                </Reader>
            </ext:Store>
        </Store>
        <ColumnModel>
            <Columns>
                <ext:Column ColumnID="name" DataIndex="name" Header="Name"></ext:Column>
            </Columns>
        </ColumnModel>
        <SelectionModel>
            <ext:RowSelectionModel ID="RowSelectionModel1" runat="server" />
        </SelectionModel>
        <Plugins>
            <ext:GridFilters ID="GridFilters1" runat="server" Local="true">
                <Filters>
                    <ext:StringFilter DataIndex="name">
                        <Listeners>
                            <Activate Handler="alert('activate');" />
                            <Update Handler="alert('update');" />
                        </Listeners>
                    </ext:StringFilter>
                </Filters>
                <Listeners>
                    <FilterUpdate Handler="alert('filt_update');" />
                </Listeners>
            </ext:GridFilters>
        </Plugins> 
        <BottomBar>
            <ext:StatusBar ID="DevicesCount" runat="server" Text="...">
            </ext:StatusBar>
        </BottomBar>
    </ext:GridPanel>