Answer the question
In order to leave comments, you need to log in
How to format dates by default with DatePicker plugin?
<?= DatePicker::widget([
'model' => $model,
'attribute' => 'date_start',
'attribute2' => 'date_end',
'options' => [
'placeholder' => 'Дата начала',
'autocomplete' => 'off'
],
'options2' => [
'placeholder' => 'Дата окончания',
'autocomplete' => 'off',
],
'type' => DatePicker::TYPE_RANGE,
'form' => $form,
'separator' => '→',
'pluginOptions' => [
'format' => 'dd.MM.yyyy',
'autoclose' => true,
'todayHighlight' => true,
],
]) ?>
public function getDateStart()
{
return Yii::$app->formatter->asDate($this->date_start, 'php:d.m.Y');
}
Does not help. Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question