I am currently working with a React Kendo Grid which is filled with data by an API. On of the columns is Date and the data filling it comes in a format like:
2022-02-11T15:50:51.000+00:00
I tried to format the Kendo Grid column like this:
<GridColumn
field="snDate"
filter="date"
format="{0:yyyy-MM-dd'T'HH:mm:ss.SSS'Z'}"
width="200px"
title="Date"
/>
but when I filter it with Kendo datapicker filter, it returns no rows. What am I doing wrong?