Lightweight Angular.js datepicker directive built with Moment.js for jalaali Calendar.
- Custom ng-model date format: custom string or js date
- Min date / Max date
- Allow/disallow future date selection
- Quick selection of month and year
- Locale aware (Angular and Moment locale)
- Angularjs >=1.2
- Moment.js
- Moment-jalaali.js >=0.4.0
npm install --save ng-jalali-flat-datepicker
- Link
/dist/ng-flat-jalaali-datepicker.js
and/dist/ng-flat-jalaali-datepicker.css
- Add the module
'ngJalaliFlatDatepicker'
as dependency of your angular module.
This is an attribute only directive.
<input type="text" ng-model="date" ng-flat-jalaali-datepicker>
<button ng-model="date" ng-flat-jalaali-datepicker>Pick a date</button>
datepicker-config
: Object - The datepicker's config object.gregorian-formatted-picked-date
: String - The picked date in Gregorian calendargregorian-picked-date
: Object - The picked date in Gregorian calendar as a moment.js object
<input type="text" ng-model="date" datepicker-config="yourCustomConf" gregorian-formatted-picked-date="gfdate" gregorian-picked-date="gdate" ng-flat-jalaali-datepicker>Pick a date</button>
picked date is {{gfdate}}
dateFormat
: String - The Moment.js format of the date in theng-model
. Fallback to js date Object if no format is given. Eg:'jDD/jMM/jYYYY'
.gregorianDateFormat
: String - The string date format. if it's not present thedateFormat
will be used instead.minDate
: Object - The minimum selectable date. Must be a Moment Date Object.dropDownYears
: Number - The number indicates how many years should appear in the year drop down list.maxDate
: Object - The maximum selectable date. Must be a Moment Date Object.allowFuture
: Boolean - Maximum selectable date is tomorrow
Default locale is Farsi/Persian but you can load any locale of your choice (Angular and Moment), the datepicker use the currents locales. for persian translation of this document see [README.fa.md] (README.fa.md)
Just go to the project directory and:
- Install the dev dependencies:
npm install
- then start watch task:
gulp watch
- Design: YannickAWE
- moment-jalaali: [Behrang] (https://github.com/jalaali/moment-jalaali)