Reputation:
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
Any property or any way to skip this step ?
Thank You
Upvotes: 0
Views: 896