Author Topic: Individual Column Filter with a remove icon inside a textbox.  (Read 2208 times)

palanifm

  • Pro Ultimate
  • Newbie
  • *
  • Posts: 4
    • View Profile
There does not seem to be support for individual column filter clearing.

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6122
    • View Profile
Re: Individual Column Filter with a remove icon inside a textbox.
« Reply #1 on: May 08, 2017, 09:48:59 pm »
remove icon inside a textbox is not there

though individual column filter clearing can be done with filter method, e.g if you want to hook it up with click of a button or any other event.

Code: [Select]
                  {
type:'button',
label: 'Reset ship country',
listener: function(){
this.filter({
  oper:'add',
  data:[
{dataIndx: "ShipCountry", value: ""}
  ]
})
this.refreshHeader();
}                       
                    }
« Last Edit: May 08, 2017, 09:56:31 pm by paramquery »