我想仅在记录是新的时添加默认值(当前日期)。编辑记录时,不应覆盖日期。
答案 0 :(得分:1)
如果新记录提供当前日期并且如果现有通过存在日期,则使用模型传递date的值。
答案 1 :(得分:0)
我解决了它:
<?php
if ($model->isNewRecord) {
$form->field($model, 'erstellt_am')->widget(DatePicker::classname(),[
'options' => [ 'value' => date('Y-m-d')],
'pluginOptions' => [
'autoclose' => true,
'format' => 'yyyy-mm-dd',
'todayHighlight' => true,
'todayBtn' => true,
'timeZone' => 'Europe/Amsterdam',
]
])
}
?>
由于