关于yii2.0里面的timepicker [ 2.0 版本 ]
请问yii2里面的timepicker小部件该如何使用的?本人新手,望详细指点,谢谢
共 3 个回答
-
MilkProtiem 回答于 2015-07-24 01:05 举报共 1 条回复
-
当一回搬运工~
Installation If you do not have Composer, you may install it by following the instructions at getcomposer.org. You can then install this package using the following command: php composer.phar require "janisto/yii2-timepicker" "*" or add "janisto/yii2-timepicker": "*" to the require section of your application's composer.json file. Usage See jQuery Timepicker options. For example to use the timepicker with a yii\base\Model: echo TimePicker::widget([ //'language' => 'fi', 'model' => $model, 'attribute' => 'created_at', 'mode' => 'datetime', 'clientOptions'=>[ 'dateFormat' => 'yy-mm-dd', 'timeFormat' => 'HHss', 'showSecond' => true, ] ]); The following example will use the name property instead: echo TimePicker::widget([ //'language' => 'fi', 'name' => 'from_time', 'value' => $value, 'mode' => 'time', ]); You can also use this widget in an yii\widgets\ActiveForm using the yii\widgets\ActiveField::widget() method, for example like this: echo $form->field($model, 'field')->widget(\janisto\timepicker\TimePicker::className(), [ //'language' => 'fi', 'mode' => 'datetime', 'clientOptions'=>[ 'dateFormat' => 'yy-mm-dd', 'timeFormat' => 'HHss', 'showSecond' => true, ] ]);
共 1 条回复 -
我有封装了个 widgets,免 composer安装,下载地址:http://pan.baidu.com/s/1sj7hqkX
你下好后改一下它的命名空间就可以了。放在哪里就看你的命名空间。
共 4 条回复
流言蜚语
注册时间:2015-06-03
最后登录:2018-06-13
在线时长:40小时16分
最后登录:2018-06-13
在线时长:40小时16分
- 粉丝13
- 金钱18660
- 威望0
- 积分19060