yii2 2amigos 数据选择器。无法保存到模型

yii2 2amigos datapicker. Can't save to model

我的模型中有 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 列中保存空参数。 P.S。 Bth,如何隐藏日历?我想把它隐藏起来,当我点击输入时它会自动显示选择日期。

试试这个

    <?= $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日期格式保存日期