DatePicker is not setting

Hi,
I follow up the example of the DatePicker [Blazor Datepicker component with calendar mode]

image

As you can see, the month and year of today's date are set. Great!

I've implemented in my code : <RadzenDatePicker @bind-Value="@dev.DateFin" DateFormat="d" />

The result is :

image

As you can see, the month and year of today's date are not set. Not good!

Have an idead why the date is not setting?

(Blazor Datepicker component with calendar mode)

We are not sure why you have such date. Can you reproduce the same on our demo?

I've put in my application your first example in your demo.

<RadzenDatePicker @bind-Value=@value DateFormat="d" />
@code{
DateTime? value = DateTime.Now;
}

The result is good :
image

this means I cannot bind specific values other than DateTime? value = DateTime.Now;
The value I want to bind has the definition public DateTime DateFin { get; set; }

This property has default value default(DateTime) which explains why you get the described result.

Ok I've to set the DateFin