Open brian2453 opened 7 years ago
Thats the inline version, it should render not popup.
I am experiencing the same issue: the calendar not popping up when i focus on the input field. What could be the problem?
@BillionaireZ @brian2453 have you checked the developer tools if there is any javascript error? what about the css file? is it rendered?
I am experiencing the same issue: the calendar not popping up <?php use dosamigos\datepicker\DatePicker; use yii\jui\AutoComplete;
<?= $form->field($model, 'event_start_date')->widget(
DatePicker::className(), [
// inline too, not bad
'inline' => false,
'clientOptions' => [
'autoclose' => false,
'format' => 'yyyy-mm-dd'
]
]);
?>
<?= $form->field($model, 'event_end_date')->widget(
DatePicker::className(), [
// inline too, not bad
'inline' => false,
'clientOptions' => [
'autoclose' => false,
'format' => 'yyyy-mm-dd'
]
]);
?>
i've use same widget in one form, and event_start_date its show up but event_end_date not show up any suggestion?
When I click on the form field nothing happens. I can see the changes to the field, but doesn't work. Not sure if I missed something but I followed the installation without any issues.
<?php
use yii\helpers\Html; use yii\helpers\ArrayHelper; use yii\widgets\ActiveForm; use backend\models\ClassTitles; use dosamigos\datepicker\DatePicker;
/ @var $this yii\web\View / / @var $model backend\models\Classes / / @var $form yii\widgets\ActiveForm / ?>