我是Yii2 Advanced框架的新手,我正在尝试从模型中以活动形式插入日期选择器。
我使用2amigos小部件作为日期选择器并更新了我的composer.json。
这是我的Active Form代码
use dosamigos\datepicker\DatePicker;
<?= $form->field($model, 'user_date_birth')->widget(DatePicker::className(), [
// inline too, not bad
'inline' => true,
// modify template for custom rendering
'template' => '<div class="well well-sm" style="background-color: #fff; width:250px">{input}</div>',
'clientOptions' => [
'autoclose' => true,
'format' => 'dd-M-yyyy'
]
]);?>
但它没有在点击时显示日期选择器,也没有显示错误。
如何更新我的代码以显示日期选择器?
答案 0 :(得分:0)
你的代码没有错...但我认为jquery中存在问题..将它添加到你的AppAsset.php中