Here is the setup:
$(function () {
$('#datetimepicker').datetimepicker({
defaultDate: moment(),
sideBySide: true
});
});
This configuration allows setting a default date & time when no value is provided for the field (e.g. from a database).
My inquiry: I want to adjust it so that the default date & time only appear after clicking on the calendar icon. In other words, if no value is entered in the input field, it should remain empty by default. When the user clicks on the calendar icon, then the default date & time should be displayed (refer to the image link below for an explanation).