moonlandsoft / bootui-datetimepicker
Bootstrap Datepicker and Timepicker in one extentions
Installs: 35 279
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 2
Open Issues: 1
Language:JavaScript
Type:yii2-extension
Requires
This package is not auto-updated.
Last update: 2024-11-05 04:35:26 UTC
README
Bootstrap Datepicker and Timepicker in one extentions
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist moonlandsoft/bootui-datetimepicker "*"
or add
"moonlandsoft/bootui-datetimepicker": "*"
to the require section of your composer.json
file.
Properties
addon
Addon is a bootstrap input group addon, you can see bootstrap input group to details of documentation. Extend form controls by adding text or buttons before, after, or on both sides of any text-based input.
format
You can change format of date or time using this property but this format only use momentjs date time format and not use php date time format. Click here to see all of datetime format.
others properties
For others properties you can see in bootstrap-datetimepicker. You can directly add the property from bootstrap-datetimepicker and my widget will instantly recognize the property.
Usage
Once the extension is installed, simply use it in your code by :
<?= \bootui\datetimepicker\Datepicker::widget([ 'name' => 'date', 'options' => ['class' => 'form-control'], 'addon' => ['prepend' => 'Birth Date'], 'format' => 'YYYY-MM-DD', ]); ?> <?= \bootui\datetimepicker\Timepicker::widget([ 'name' => 'time', 'options' => ['class' => 'form-control'], 'addon' => ['prepend' => 'Time'], 'format' => 'HH:mm', ]); ?> <?= \bootui\datetimepicker\DateTimepicker::widget([ 'name' => 'datetime', 'options' => ['class' => 'form-control'], 'addon' => ['prepend' => 'Date and Time'], 'format' => 'YYYY-MM-DD HH:mm', ]); ?>
or
<?= $form->field($model, 'attribute')->widget(Datepicker::className(),[ 'options' => ['class' => 'form-control'], 'addon' => ['prepend' => 'Birth Date'], 'format' => 'YYYY-MM-DD', ]); ?> <?= $form->field($model, 'attribute')->widget(Timepicker::className(),[ 'options' => ['class' => 'form-control'], 'addon' => ['prepend' => 'Time'], 'format' => 'HH:mm', ]); ?> <?= $form->field($model, 'attribute')->widget(DateTimepicker::className(),[ 'options' => ['class' => 'form-control'], 'addon' => ['prepend' => 'Date and Time'], 'format' => 'YYYY-MM-DD HH:mm', ]); ?>