diff --git a/src/Plugin/Field/FieldWidget/TimestampDatetimeNoDefaultWidget.php b/src/Plugin/Field/FieldWidget/TimestampDatetimeNoDefaultWidget.php
index e903dcf..131da73 100644
--- a/src/Plugin/Field/FieldWidget/TimestampDatetimeNoDefaultWidget.php
+++ b/src/Plugin/Field/FieldWidget/TimestampDatetimeNoDefaultWidget.php
@@ -32,14 +32,41 @@ class TimestampDatetimeNoDefaultWidget extends TimestampDatetimeWidget {
    */
   public function formElement(FieldItemListInterface $items, $delta, array $element, array &$form, FormStateInterface $form_state) {
     $element = parent::formElement($items, $delta, $element, $form, $form_state);
+    // @todo Do not these lines. The #description is entirely replaced by custom
+    // text in scheduler_form_node_form_alter()
     $date_format = DateFormat::load('html_date')->getPattern();
     $time_format = DateFormat::load('html_time')->getPattern();
     $element['value']['#description'] = $this->t('Format: %format. Leave blank to disable.', array('%format' => Datetime::formatExample($date_format . ' ' . $time_format)));
 
+    // Set the callback function to allow interception of the submitted user
+    // input and add the default time if needed. It is too late to try this in
+    // function massageFormValues as the validation has already been done.
+    $element['value']['#value_callback'] = array($this, 'valueCallback');
     return $element;
   }
 
   /**
+   * Callback function to add default time to the input date if needed.
+   *
+   * This will intercept the user input before form validation is processed.
+   */
+  public function valueCallback(&$element, $input, FormStateInterface $form_state) {
+    if ($input !== FALSE) {
+      $date_input  = $element['#date_date_element'] != 'none' && !empty($input['date']) ? $input['date'] : '';
+      $time_input  = $element['#date_time_element'] != 'none' && !empty($input['time']) ? $input['time'] : '';
+      // If there is an input date but no time and the date-only option is on
+      // then set the input time to the default specified by scheduler options.
+      $config = \Drupal::config('scheduler.settings');
+      if (!empty($date_input) && empty($time_input) && $config->get('allow_date_only')) {
+        $input['time'] = $config->get('default_time');
+      }
+    }
+    // Chain on to the standard valueCallback for Datetime as we do not want to
+    // duplicate that core code here.
+    return Datetime::valueCallback($element, $input, $form_state);
+  }
+
+  /**
    * {@inheritdoc}
    */
   public function massageFormValues(array $values, array $form, FormStateInterface $form_state) {
