I have a few datetime columns in Kendo grid in an ASP.NET MVC application. When grouped on any of them, the groups are segregated and displayed for same dates as they have different times.
I want to group them based on date only and ignore the time part. The column should still have the values in datetime format only.
I could display the group headers as Date only by using .ClientGroupHeaderTemplate("#= kendo.toString(value, 'MM/dd/yyyy') #")
in the column definition.
Can something similar be applied while grouping?