m-comscience / yii2-datepicker-thai
Yii2 bootstrap 日期选择器 泰语版。
v1.0.0
2018-11-18 09:11 UTC
Requires
- kartik-v/yii2-field-range: dev-master
- kartik-v/yii2-krajee-base: >=2.0.0
This package is auto-updated.
Last update: 2024-09-20 02:29:10 UTC
README
Yii2 扩展
安装
要安装
$ composer require m-comscience/yii2-datepicker-thai "@dev"
用法
use mcomscience\datepicker\DatePicker; // usage without model echo \yii\helpers\Html::label('Date'); echo DatePicker::widget([ 'name' => 'date', 'value' => date('d/m/Y'), // 10/10/2561 'options' => ['placeholder' => 'Select date ...'], 'pluginOptions' => [ 'autoclose' => true, 'format' => 'dd/mm/yyyy', 'language' => 'th', 'todayHighlight' => true, 'todayBtn' => true, ], ]);