Hello,
I want to select date using a datepicker in yii2.
what is the procedure to do this task.
Hello,
I want to select date using a datepicker in yii2.
what is the procedure to do this task.
Just add the following code in your _form.php
<div class="row">
<?php echo $form->labelEx($model,'date_of_birth'); ?>
<?php echo $form->dateField($model,'date_of_birth'); ?> //date-control provides a control similar to datepicker
<?php echo $form->error($model,'date_of_birth'); ?>
</div>
Like if my suggestions are helping you out.