kukla-svitla / yii2-datetime-picker-widget
Date and time picker
Installs: 3
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 1
Type:yii2-extension
Requires
- bower-asset/datetimepicker: @dev
- yiisoft/yii2: *
This package is auto-updated.
Last update: 2024-12-15 21:20:49 UTC
README
This yii2 extension is a wrapper for the powerful jQuery date-time picker
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist kukla-svitla/yii2-datetime-picker-widget "*"
or add
"kukla-svitla/yii2-datetime-picker-widget": "*"
to the require section of your composer.json
file.
Usage
This widget renders a input control with datetime picker.
You can use is like a separate widget or with ActiveField
instance.
<?= \svitla\dateTimePicker\Widget::widget([ // you need specify model and attribute 'model' => $model, 'attribute' => 'posted', // or name of the input and value (if needed) //'value' => '2016/01/22 18:26', //'name' => 'specific-name', 'mode' => \svitla\dateTimePicker\Widget::MODE_DATE, // for only date picker // or \svitla\dateTimePicker\Widget::MODE_TIME for time picker // default is datetime picker 'language' => 'ru', 'options' => [ // html options of the input 'class' => 'my-class', ], 'clientOptions' => [ 'theme' => 'dark', 'minDate' => '05.12.2013', 'formatDate' => 'd.m.Y', ] ]) ?> <?= $form->field($model, 'start_time')->widget(\svitla\dateTimePicker\Widget::className(), [ 'language' => 'ru', 'mode' => \svitla\dateTimePicker\Widget::MODE_TIME, 'options' => [ 'class' => 'my-class', ], 'clientOptions' => [ 'theme' => 'dark', 'minDate' => '05.12.2013', 'formatDate' => 'd.m.Y', ] ]) ?>
License
yii2-datetime-picker-widget is released under the MIT License. See the bundled LICENSE
for details.