'Date filter is not working in GridMvc

I am using Grid.mvc in this link:

https://gridmvc.codeplex.com/

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()


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source