Currently i'm using below way to assign new options to assigned date column field. But it's not getting displayed in grid.
let dateValues = ["equals", "inRange","quarter1","quarter2","quarter3","quarter4"];
{
headerName: "Assigned Date",
field: "assignedDate",
filter: "date",
filterParams: {apply: true, newRowsAction: 'keep'},
sort: 'desc',
filterOptions: this.dateValues
}
And looking for some pointers how can i set predefined date values for quater1,quater2,quater3 & quarter4 when use selects that option in drop down filter. I have gone through the ag-grid filters section, i don't find any option to customize this.
Any help is appreciated.