1. #61
    Sencha User tdikarim's Avatar
    Join Date
    Jun 2007
    Location
    Belgium - Brussel
    Posts
    131
    Vote Rating
    0
    tdikarim is an unknown quantity at this point

      0  

    Default cls on input field

    cls on input field


    Hi,

    Great plugin. Thanks for sharing.

    I want to apply a cls for the input field contained in the header. How to apply it ?

    Thanks
    Tamditi Karim

  2. #62
    Ext JS Premium Member
    Join Date
    Apr 2007
    Posts
    289
    Vote Rating
    0
    jheid is on a distinguished road

      0  

    Default


    For supporting combo boxes I added
    PHP Code:
    if (filterField.xtype == 'combo')
              
    filterField.on ('change'this.onFilterContainerEnterthis); 
    at the end of

  3. #63
    Sencha User
    Join Date
    Apr 2011
    Location
    Bamberg Germany
    Posts
    22
    Vote Rating
    0
    dotti is on a distinguished road

      0  

    Default


    Hi,

    is there a Verion for ExtJS 4.2.0

    mfg

    Klaus

  4. #64
    Ext JS Premium Member
    Join Date
    Sep 2008
    Location
    Raleigh, NC
    Posts
    130
    Vote Rating
    2
    qooleot is on a distinguished road

      0  

    Default


    It works in 4.2 after I changed this in two places:

    var columns = this.grid.headerCt.getGridColumns(true);

    to this:

    var columns = this.grid.headerCt.getGridColumns();

    I'll need to go figure out what the 'true' was for and test with nested headers and other things though...but a few basic filters on a basic grid works.

  5. #65
    Sencha User
    Join Date
    Mar 2010
    Posts
    1
    Vote Rating
    0
    mikegk is on a distinguished road

      0  

    Default Great tip - thanks a lot!

    Great tip - thanks a lot!


    Applied now your fix - and it works like a dream!