This question is locked. New answers and comments are not allowed.
Formatting a datetime col as a short date string:
columns.Add(o => o.CreateDate.Date.ToString("d")).Width(50).Title("Created");
removes the sorting on that column.
Is there a way to format a datetime column without the time and still have it sort?
columns.Add(o => o.CreateDate.Date.ToString("d")).Width(50).Title("Created");
removes the sorting on that column.
Is there a way to format a datetime column without the time and still have it sort?