Thanks.
Seems when then filter is removed it keeps the modified color and do not resume to "standard" color.
using:
columnTemplate: { width: 115, dataType: 'string', filter: { crules: [{ condition: 'contain' }], selectGridObj: remoteOptions('a.table') },
get styleHead(){
let val = this.filter?.crules?.[0].value;
if(val != null && val.length ){
return {
'color': 'blue'
}
}
}
},
filter(){
this.colModel.forEach((col, ci)=>{
this.refreshHeaderCell({
rowIndx: 0,
colIndx: ci
})
})
},