A date and time picker with Solar(Persian), Lunar(Arabic) and Gregorian calendars
v1.4
v1.3
v1.2
v1.1
Just download the files and and include JS, CSS and other resource files in your project
JS Files:
<script type="text/javascript" src="https://github.com/hossein-alipour/ha-datetimepicker/raw/master/ha-solardate.min.js"></script>
<script type="text/javascript" src="https://github.com/hossein-alipour/ha-datetimepicker/raw/master/ha-lunardate.min.js"></script> // If you dont need the lunar calendar features, just ignore this line
<script type="text/javascript" src="https://github.com/hossein-alipour/ha-datetimepicker/raw/master/ha-datetimepicker.min.js"></script>
Note: Be sure to include the ha-solardate.js and ha-lunardate.js file before ha-datetimepicker.js
CSS File:
<link rel="stylesheet" type="text/css" href="https://github.com/hossein-alipour/ha-datetimepicker/blob/master/ha-datetimepicker.css" />
NuGet is a standard package manager for .NET Applications, It's simplest solution for ASP.NET Web Developers and Visual Studio Developers to install the latest release of packages with just type the below command and press enter
Install-Package hadatetimepicker
npm is a NodeJS package manager. As its name would imply, you can use it to install node programs. Also, if you use it in development, it makes it easier to specify and link dependencies. type the below command in your Command Prompt or Terminal and press enter
npm i ha-datetimepicker
Bower is a package manager for the web. type the below command in your Command Prompt or Terminal and press enter
bower install ha-datetimepicker
<input type="text" id="datetime" data-ha-datetimepicker="#datetime" />
var dp = new HaDateTimePicker("#datetime");
dp.show();
You can initiate your HA-DateTimePicker with this set of options:
Note: you can use with javascript object or HTML Attribute
Javascript option | HTML attribute | Type | description |
---|---|---|---|
date | data-ha-dp-date | Date | Initial month and year sheet |
selectedDate | data-ha-dp-selecteddate | Date | Selected Date |
minYear | data-ha-dp-minyear | Number | The first year in the year dropdown list |
maxYear | data-ha-dp-maxyear | Number | The last year in the year dropdown list |
isSolar | data-ha-dp-issolar | Boolean | Turns into Solar(Persian) Calendar |
isLunar | data-ha-dp-islunar | Boolean | Turns into Lunar(Arabic) Calendar |
resultInSolar | data-ha-dp-resultinsolar | Boolean | Returns the result in Solar(Persian) date mode |
resultInLunar | data-ha-dp-resultinlunar | Boolean | Returns the result in Lunar(Arabic) date mode |
forceSetTime | data-ha-dp-forcesettime | Boolean | Forces the user to set the time |
disableTime | data-ha-dp-disabletime | Boolean | Disables the time feature |
pagingDuration | data-ha-dp-pagingduration | Number | The duration time of changing month (In Miliseconds) |
minAllowedDate | data-ha-dp-minalloweddate | Date | The minimum date that the user can select |
maxAllowedDate | data-ha-dp-maxalloweddate | Date | The maximum date that the user can select |
resultFormat | data-ha-dp-resultformat | String | The string format of date and time result. use {year} for year, {month} for month, {day} for day, {hour} for hour, {minute} for minute, {ampm} for AM or Pm and if you want to display some text only when time is available put it between {t? and }. ex. {month}/{day}/{year} {t?{hour}:{minute} {ampm}} |
disabledWeekDays | data-ha-dp-disabledweekdays | Array or String(separated by comma) | Use the number of week days to disable them. 1 for Sunday(یکشنبه or الأحد) and 7 for Saturday(شنبه or السبت) |
Copyright © 2016 by Hossein Alipour under MIT License