ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: palanifm on May 05, 2017, 09:39:11 pm
-
There does not seem to be support for individual column filter clearing.
-
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.
{
type:'button',
label: 'Reset ship country',
listener: function(){
this.filter({
oper:'add',
data:[
{dataIndx: "ShipCountry", value: ""}
]
})
this.refreshHeader();
}
}