I’m having trouble with adapting a solution from this thread
<RadzenDataGridColumn Property="CreatedOn" FilterProperty="CreatedOn" Title="@SR.Get("Created On")" Width="auto" SortOrder="SortOrder.Descending">
<FilterValueTemplate>
<RadzenDatePicker TValue="DateTime" Kind="DateTimeKind.Utc" DateFormat="dd.MM.yyyy"
Value="@(context.FilterValue)" Name="CreatedOn" />
</FilterValueTemplate>
<Template Context="item">
@item.CreatedOn.Show("dd.MM.yyyy HH:mm")
</Template>
</RadzenDataGridColumn>
I had to specify TValue="DateTime", however @bind-Name="CreatedOn" doesn’t work, there is no CreatedOn in the context.
The filter for CreatedOn is not sent to server with the code above.
I’m using a rather old version of Radzen 5.5.2
Thanks