你需要使用
alias
随着
placeholder
separator
选择
clientOptions
如下
<?php echo
$form->field(
$modelIsoTanksDeliveryOrder, "open_stack", [
'template' => '{input}{error}{hint}'
]
)->widget(
\yii\widgets\MaskedInput::class, [
'mask' => "1-2-y h:s",
'clientOptions' => [
'alias' => 'datetime',
"placeholder" => "dd-mm-yyyy hh:mm",
"separator" => "-"
]
]
);
?>
thread