This Date picker widget work with Iranian calendar, based on Persian Date Picker
The preferred way to install this extension is through composer.
Either run
php composer.phar require hadi-aj/yii2-pwt-datepicker "*"
or add
"hadi-aj/yii2-pwt-datepicker": "*"
to the require section of your composer.json
file.
use hadiaj\pwtdatepicker\PwtDatepicker;
// Normal select with ActiveForm & model
echo $form->field($model, 'date')->widget(PwtDatepicker::classname(), [
'pluginOptions' => [
'initialValue' => TRUE,
...
],
]);
// PwtDatepicker without model
echo PwtDatepicker::widget([
'pluginOptions' => [
'initialValue' => TRUE,
...
],
]);
Please, check the Persian Date Picker documentation for further information about its configuration options.
Freely distributable under the terms of the WTFPL license.