I am using Grid.mvc in this link:
When I use Date filter it shows the calendar but by selecting the date nothing is happening. other kind of filters like text and bool are working fine. I already referench the "Grid.Mvc DatePicker"
This is my code:
@Html.Grid(Model).Columns(columns =>
{
columns.Add(model => model.dataUser).Titled("User").SetWidth(110);
columns.Add(model => model.Create_Date).Titled("Create Date").SetWidth(110).Filterable(true).Format("{0:dd/MM/yyyy}");
columns.Add(model => model.Modified_Date).Titled("Modified Date").SetWidth(110).Filterable(true).Format("{0:dd/MM/yyyy}");
}).WithPaging(20).Sortable().Filterable().WithMultipleFilters()