[CLOSED] Grid Filter from Textbox

  1. #1

    [CLOSED] Grid Filter from Textbox

    Hey Guys,
    I need a sample code for filtering grid data from a textbox or any other form field from outside the grid panel.

    The current grid filter plugin functions inside the column header. I want a textbox (or any other form field) in the top bar to filter the date.

    Can you give me a sample please?

    Thanks,

  2. #2

    RE: [CLOSED] Grid Filter from Textbox

    Hi,

    There is no difference where placed fields (inside column header or top bar). The filtering logic doesn't depend from control's placement


    See the following sample
    https://examples1.ext.net/#/GridPane...Header/Filter/


    Just remove HeaderRows in GridView and place those controls inside grid's top bar. The code for filtering doesn't need to change
    The field can be placed directly to the Items collection of Toolbar (https://examples1.ext.net/#/Toolbar/Menu/Overview/)
  3. #3

    RE: [CLOSED] Grid Filter from Textbox

    Thanks,

    I just wanted the code for filtering the data. May be I framed my question wrong.

    In the example you mentioned, I can see the js code which is enuf for me to work on. :)
  4. #4

    RE: [CLOSED] Grid Filter from Textbox

    Hi,

    Please note that the example performs client-side filtering only
  5. #5

    RE: [CLOSED] Grid Filter from Textbox

    Yes... I want client side to find contacts...

    One more question...

    Will the string Filter work like the LIKE operator in SQL... or will it search for exact string?
  6. #6

    RE: [CLOSED] Grid Filter from Textbox

    it works...
    thanks for all ur help
  7. #7

    RE: [CLOSED] Grid Filter from Textbox

    Hi,

    As you can see in that example
    return val.toLowerCase().indexOf(value.toLowerCase()) > -1;

    It is case-insensitive search, will be returned records which contains search word as substring .
    You can use RegExp to performs search with your conditions
    return val.toLowerCase().match(your_reg_exp);

Similar Threads

  1. [CLOSED] Grid Filter
    By majunior in forum 1.x Legacy Premium Help
    Replies: 3
    Last Post: Mar 22, 2011, 5:09 PM
  2. Replies: 1
    Last Post: Oct 09, 2009, 3:46 AM
  3. Filter Grid from Textfield outside of grid?
    By Tbaseflug in forum 1.x Help
    Replies: 4
    Last Post: May 29, 2009, 5:08 PM
  4. Grid Panel combined with TextBox
    By BLOZZY in forum 1.x Help
    Replies: 0
    Last Post: Apr 28, 2009, 8:55 AM
  5. Replies: 1
    Last Post: Dec 25, 2008, 6:32 AM

Posting Permissions