Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8513855
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T04:41:54+00:00 2026-06-11T04:41:54+00:00

I have to filter a grid store from a set of textfield/combobox inserted in

  • 0

I have to filter a grid store from a set of textfield/combobox inserted in the top of the page in a separated Ext.form.Panel.
I use this code for do the grid filter:

doGridFilters : function() {
        //storeClients.clearFilter();
        var client_Id = Ext.getCmp('Id_form').getValue();
        var filter1 = Ext.create('Ext.util.Filter',{
             root:'list',
             comparison: 'eq',
             property: "Id",
             value: client_Id
        });

        storeClients.getProxy().extraParams = { filter: filter1 };
        storeClients.load();
    },

but the store don’t perform any type of filter.

Can anyone help me?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T04:41:56+00:00Added an answer on June 11, 2026 at 4:41 am

    Remotefiltering is quite easy:

    • The store must be configured with remoteFilter so that the proxy
      will handle and pass all applied filter
    • Next apply a filter with
      store.filter(‘propertyName’, ‘filtervalue’). The store will now
      automaticly loading after a filter get applied.
    • Expect a a list of
      filters at the serverside which looks like
      ...filter:[{property:'Name', value:'value'}]...

    And that’s all. The remoteFilter property can be changed each time before applying a filter. For your case:

    doGridFilters : function(grid) {
        var store = grid.store;
        store.clearFilter();
        store.remoteFilter = true;// optional
        var client_Id = Ext.getCmp('Id_form').getValue();
        store.on('load', function(s){ s.remoteFilter = false; }, this, { single: true }) // optional
        store.filter("Id",client_Id);
    }
    

    Note:
    The proxy will always only apply the property-value paired filter, nothing more [ExtJS 4.1.1] For more you will need to override the responsible proxy function

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following code to filter a grid from values inputed in a
I am trying to implement Ext.ux.grid.filter.ListFilter using a data store (rather than a hardcoded
I have a ASP.Net web page with a grid view. I want to filter
i have added filter to each of the columns in a grid panel. When
I have DevExpress grid in the page. For one column I enable filter in
I currently have a table(/grid) of data that I can page, filter and sort.
I have a grid ( Ext.grid.Panel ) that I need to apply filters to.
I have some filter and one grid.And grid have some buttons like modify/edit.I am
I have 3 filter conditions on a web page Filter by dropdown Source Filter
I have a Filter Servlet that filters request from a Servlet. I do not

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.