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();
}
}