Hello,
I'm using the kendo-grid for angular and in a colum I have date format.
<kendo-grid-column
field="toDate"
title="A"
[width]=160
[format]=displayDateFormat
filter="date"
[style]="{ 'border': '1px solid #888' }"
>
<ng-template kendoGridFilterCellTemplate let-filter let-column="column">
<kendo-grid-date-filter-cell
[operator]="'lte'"
[showOperators]="false"
[column]="column"
[filter]="filter"
[formatPlaceholder]="{
year: 'aaaa', month: 'MM', day: 'gg',
hour: 'h', minute: 'm', second: 's', millisecond: ''
}"
></kendo-grid-date-filter-cell>
</ng-template>
<ng-template kendoGridCellTemplate let-dataItem>
{{dataItem.toDate | date: displayDateFormat}}
</ng-template>
</kendo-grid-column>
The only possible option for the filter is less than equal (<=) the problem is who the filter work like lt (<) and not consider equal value.
If i selecet the filter date 31/01/2024 (in italy whw use dd/MM/yyyy) the grid show only data to 30/01/2024.
The same configuration using 'gte' work fine.
Thanks
LSo