lintion / yii2-widget-flatpickr
为yii2-widget-flatpickr提供的简单而强大的日期时间选择器。
v1.0.0
2017-10-23 01:40 UTC
Requires
- yiisoft/yii2: ~2.0.5
This package is not auto-updated.
Last update: 2024-09-29 04:49:25 UTC
README
yii2-widget-flatpickr 是一个易于配置的yii2小部件日期时间选择器。
安装
安装最新稳定版本
composer require lintion/yii2-widget-flatpickr
其他安装方法,编辑 composer.json 文件 require
字段添加以下内容。然后运行 composer update
"lintion/yii2-widget-flatpickr": "dev-master"
快速入门
<?= $form->field($model, 'create_at')->widget(lintion\flatpickr\Flatpickr::className(), [ 'theme' => 'dark', //'locale' => 'en', 'mode'=> 'range', 'enableTime' => false ])?>