masoud91 / yii2-jalali-datepicker

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bootstrap Jalali Date Picker

Jalali Date Picker for Bootstrap Yii2 Extension

Latest Stable Version Total Downloads License

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist masoud91/yii2-jalali-datepicker "*"

or add

"masoud91/yii2-jalali-datepicker": "*"

to the require section of your composer.json file.

Usage

Once the extension is installed, simply use it in your code by following code :

<?php 
use masoud91\jalaliDatePicker\jalaliDatePicker;

echo $form->field(
		$model, 
		'date'
	)
	->widget(
		jalaliDatePicker::className(), [
		'options' => array(
			'format' => 'yyyy/mm/dd',
			'viewformat' => 'yyyy/mm/dd',
			'placement' => 'right',
			'todayBtn'=> 'linked',
		),
		'htmlOptions' => [
			'id' => 'date',
			'class'	=> 'form-control',
			'placeholder' => '1396/05/05',
			'readonly' => 'readonly'
		]
	]);

?>

About

License:MIT License


Languages

Language:JavaScript 66.4%Language:PHP 33.6%