DatePicker - force ok button

Hello,

first of all, thank you so much for this awesome framework.

We use the RadzenDatePicker with a individual FooterTemplate.
Currently, the DatePicker popup closes when a date is selected without entering the time. The time (options defined in footer template) must currently be set in advance. Is there a way, for example through a separate parameter, to force the user to press the OK button to confirm the input and prevent the popup from closing automatically when a date is selected?
If the 'feature' is considered beneficial from your perspective, I would also make an effort to create an appropriate pull request.

With best regards

You can set ShowTime to true and hide the default time part using the following CSS:

.rz-timepicker {
   display: none !important;
}
1 Like

Thank you for your fast reply!

My previous description was a bit confusing. I would like to specify that the popup should only be closed by clicking the OK button shown, if ShowTime is enabled to allow the date and time to be entered. Currently, the popup is closed after the day will be selected.

click path:
DatePicker (ShowTime=true) > select date > Popup will disappear
What I try to:
DatePicker (ShowTime=true) > select date > select time > Press Ok to close Popup.
I want to prevent the popup from closing after selecting a date.

Regardless of the response, thank you very much for the support!