With the Telerik KendoUI web Grid control, what are the requirements for us to get a value for filtering dates when using serverside filtering?
What we see when we filter on other columns - which is great, as we can easily parse this (strings for example) is:
filter[filters][0][field] |
filter[filters][0][operator] |
filter[filters][0][value] |
filter[logic] |
What we see when we filter on date columns is - there is no value to parse out here: (note: the value is missing for this date filter, but it was not missing in the string filter).
filter[filters][0][field] |
filter[filters][0][operator] |
filter[logic] |
Additional information about how we are using the date column in our grid:
Initialized with this column as a date:
field: "LastUpdated", title: "Updated", format: "{0:MM/dd/yyyy}"
Datasource for this grid has this column as a date:
LastUpdated: { type: "date", nullable: true }
Thank you,
Chris