Hi Paramvir,
Struggling with this.
Tried a number of combinations.
How do I get the column object?
How do I know if the checkbox is checked or not?
How do I clear this filter when it is unchecked?
{
type: 'checkbox',
label: "Over Due",
listener: function () {
this.colModel.filter({
oper: 'replace',
rules: [
{
dataIndx: 'Due Date',
mode: "AND",
crules: [
{condition: "less", value: new Date()}, //set initial value of filter
{condition: "notempty"}]
}]
})
}
},