Hi!
I am trying to set min date validation in datetimepicker in my wasm application,
version 18.4.0.41
<SfDateTimePicker TValue="DateTime?" Min="@MinDate"
Placeholder='Inicio' @bind-Value="@dItemModel.FECHA_INICIO"></SfDateTimePicker>
Min is declared as follows
public DateTime MinDate { get;set;} = DateTime.Now;
If I set the current date, I cannot change the time, it does not allow me to open popup timer.
this only works for dates greater than current day.
Can you help me...
Thanks in advance