ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: palanifm on May 05, 2017, 09:39:11 pm

Title: Individual Column Filter with a remove icon inside a textbox.
Post by: palanifm on May 05, 2017, 09:39:11 pm
There does not seem to be support for individual column filter clearing.
Title: Re: Individual Column Filter with a remove icon inside a textbox.
Post by: paramvir 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();
}                       
                    }