cgsmith / yii2-flatpickr-widget
flatpickr (DatePicker) widget for Yii2.
Installs: 377
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 2
Forks: 1
Open Issues: 1
Type:yii2-extension
Requires
- npm-asset/flatpickr: ^4.6.13
This package is auto-updated.
Last update: 2024-11-25 08:54:19 UTC
README
Renders a flatpickr Datepicker plugin.
Installation
The preferred way to install this extension is through composer.
Either run
$ composer require cgsmith/yii2-flatpickr-widget:~1.1
or add
"cgsmith/yii2-flatpickr-widget": "~1.1"
to the require section of your application's composer.json
file.
Usage
The widget renders the flatpickr onto your form.
Example of use with a form
Use the widget by setting up its model
and attribute
.
<?php use cgsmith\flatpickr\FlatpickrWidget; // as a widget ?> <?= FlatpickrWidget::widget([ 'model' => $model, 'attribute' => 'date', ]);?> <?php // additional config options for flatpickr echo $form->field($model, 'date')->widget( FlatpickrWidget::widget([ 'model' => $model, 'attribute' => 'date', 'flatpickrConfig' => [ // This is passed as a JSON object to flatpickr 'enableTime' => false, 'dateFormat' => 'F j, Y H:i', 'altInput' => true, 'altFormat' => 'F j, Y', 'locale' => 'ru', // optional ] ]); ?>
Example
It's not a demo without a GIF
Example of use on Gridview You may need to adjust the filter to work with your form or search model but this is how it is working with a default Yii installation.
<?php echo GridView::widget([ 'dataProvider' => $dataProvider, 'filterModel' => $searchModel, 'columns' => [ ['class' => 'yii\grid\SerialColumn'], [ 'attribute' => 'created_at', 'label' => 'Created At', 'format' => 'datetime', 'value' => 'created_at', 'filter' => \cgsmith\flatpickr\FlatpickrWidget::widget( [ 'model' => $searchModel, 'attribute' => 'created_at', 'flatpickrConfig' => [ 'enableTime' => false, 'dateFormat' => 'U', 'altInput' => true, 'altFormat' => 'F j, Y', ], ] ) ], 'updated_at:datetime', // other columns and settings for gridview ], ]);
Resources Information
Please, check the flatpicker site documentation for further information about its configuration options.
Contributing
Contributions are welcome!
Credits
License
The BSD License (BSD). Please see License File for more information.