我的模型中有start_date和end_date列。
在我提出的表格中:
<?= $form->field($model, 'start_date')->widget(
DatePicker::className(), [
'inline' => false,
'template' => '<div class="well well-sm" style="background-color: #fff; width:250px">{input}</div>',
'clientOptions' => [
'autoclose' => true,
'format' => 'dd-M-yyyy'
]
]);?>
它在start_date和end_date列中保存了null参数。 附: Bth,如何隐藏日历?我想隐藏它,当我点击输入时,它会自动显示选择日期。
答案 0 :(得分:0)
试试这个
<?= $form->field($model, 'start_date')->widget(
DatePicker::className(), [
'inline' => false,
// remove the template
'clientOptions' => [
'autoclose' => true,
'format' => 'yyyy-mm-dd' //change the date format
]
]);?>
由于模板,压光机保持打开状态。使用yyyy-mm-dd
日期格式保存日期