0

I am working in yii2. I am using kartik datetimepicker widget. I want to remove minutes selection popup from datetimepicker.

Here is my code for datetimepicker pugin:

    <?php
     echo $form->field($model, 'pick_date')->label(false)->widget(kartik\datetime\DateTimePicker::classname(), [
               'options' => ['placeholder' => 'Enter pickup date time ...'],
               'readonly' => true,
               'pluginOptions' => [
               'autoclose' => true,
               'format' => 'yyyy/mm/dd HH:ii P'
              ]
           ]);
  ?>

From above code i am getting datetimepicker but i want to remove minutes selection popup

enter image description here

Any property or any way to skip this step ?

Thank You

1 Answers1

2

Update answer:

In pluginOptions array add option minView => 1

Yupik
  • 4,932
  • 1
  • 12
  • 26