- I want to filter from date to date but if the value in the column is mm.dd.yy then it will filter correctly, if the value in the column is mm.dd then the filter will be false and no rows to display.
- The returned API is in the form yyyy-mm-dd(Ex: 2020-01-15) and then reformatted
--> Expectation: The column shows only the mm.dd value, but filters correctly
{
title: 'CS1',
dataType: 'date',
dataIndx: 'cs1',
format: 'mm.dd', //Format mm.dd then filter will be wrong, Format mm.dd.yy then filter will be true. But I just want to display mm.dd and the filter is still correct
align: 'center',
valign: 'center',
hvalign: 'center',
style: this.styleCell(),
styleHead: this.styleHead(),
sortable: false,
filter: { crules: [{ condition: 'between' }] },
render: (ui) => this.renderCell(ui),
},