Hi,
I'm trying to change the format for the filter for a date (datepicker in the filterRow from "MM/d/yyyy" to "yyyy-MM-dd"
I attached a screenshot of the result I'm getting
The filter format is "MM/d/yyyy" and my column format is "yyyy-MM-dd" (set by .Format("{0:yyyy-MM-dd}") )
I want the format to be same for both filter and column data - i.e "yyyy-MM-dd"
Column options:
columns.Bound(c => c.DateInvitation)
.Title("Date invitation/rappel")
.Format("{0:yyyy-MM-dd}")
.Width(150)
.Filterable(f => f.Cell(c => c.ShowOperators(false).BindTo(Enumerable.Empty<
string
>())));
grid options:
.Filterable(ftb => ftb.Mode(GridFilterMode.Row)).Filterable()