天天看點

YII2.0 中Datepicker用法

安裝yii2-date-picker-widget插件

連結位址 ​​https://github.com/2amigos/yii2-date-picker-widget​​

修改index.php檔案

#code ...

use dosamigos \datepicker\ DatePicker;

#code ...

<?= $form ->field( $model, 'company_address' )->textInput (['maxlength' => true]) ?>

<?= $form ->field( $model, 'company_start_date' )->widget (

    DatePicker ::className(), [

        // inline too, not bad

        'inline' => false, 

        // modify template for custom rendering

        //'template' => '<div class="well well-sm" style="background-color: #fff; width:250px">{input}</div>',

        'clientOptions' => [

            'autoclose' => true,

            'format' => 'yyyy-m-d'

        ]

    ]);?>

<?= $form ->field( $model, 'company_created_date' )->textInput () ?>

#code ...