Datepicker pick time as now

I have a datepicker bound to a model property that starts out as null.

When I click the date picker, the date defaults to today's date, but the time defaults to 12am.

Is there a way to have the time default to the current time?

Instead null you can use DateTime.Now.

It's an optional field, it's null until the end user wants to set it.

adding a 'now' button would work...

image

but I would think should be able to have the current time populate when the calendar is selected?

the date defaults to the todays date, can we make the time do the same thing?

There is a just different style for today. It’s possible to use InitialViewDate property or pace Today button in the footer as shown in our demos.

InitialViewDate does what I am looking for, thank you!