I am using ag grid date filter. I want to apply and reset button on the filter. I use the following code to define a column. Its not working
const columnDef = {
headerName: 'HELLO',
field: "hello",
resizable: false,
cell: [],
suppressMovable: true,
filterParams: {
buttons: ['apply'],
filterOptions: ['inRange'],
defaultOption: 'inRange',
closeOnApply: true,
//suppressAndOrCondition: true
},
sortable: true,
filter: 'agDateColumnFilter',
menuTabs: [],
cellClass: 'aggrid-left-align',
}