├── .gitignore ├── DateTimePicker.jquery.json ├── Gruntfile.js ├── LICENSE ├── README.md ├── bower.json ├── demo ├── AngularJS │ ├── BasicDatePicker-AngularJS.htm │ ├── BasicDatePicker-LongTypeOfModel.html │ ├── TwoPicker-AngularJS.htm │ └── angular-1.4.2.min.js ├── Basic-Zepto.htm ├── BasicDatePicker.htm ├── BasicDateTimePicker.htm ├── BasicExamples-CustomEvent.htm ├── BasicExamples-CustomInputString.htm ├── BasicExamples-CustomInputValue-Issue125.htm ├── BasicExamples-CustomInputValue.htm ├── BasicExamples-ElementsGroup-DataAttribute.htm ├── BasicExamples-ElementsGroup.htm ├── BasicExamples-HumanDateFormatting.htm ├── BasicExamples-InputHTML5.htm ├── BasicExamples-InputText.htm ├── BasicExamples-MinuteInterval-Multiple.htm ├── BasicExamples-MinuteInterval.htm ├── BasicExamples-NonInputElement.htm ├── BasicExamples-Seconds.htm ├── BasicExamples-SecondsInterval-Multiple.htm ├── BasicExamples-SecondsInterval.htm ├── BasicExamples-SetDateTimeOnLoad.htm ├── BasicTimePicker.htm ├── Bootstrap Examples │ ├── BasicExample-Bootstrap.htm │ ├── BasicExample-BootstrapModal.htm │ ├── bootstrap.min.css │ └── bootstrap.min.js ├── Callback-beforeShow.htm ├── Events-MouseHold.htm ├── Events-TouchHold.htm ├── Format-Both.htm ├── Format-DataAttributes.htm ├── Format-MonthYear.htm ├── Format-Parameters.htm ├── FormatConversion.htm ├── Internationalization-Chinese.htm ├── Internationalization-German.htm ├── Internationalization.htm ├── KeyboardNavigation.htm ├── PeriodRange-Both.htm ├── PeriodRange-Constant_Date.htm ├── PeriodRange-DataAttributes.htm ├── PeriodRange-MinNow.htm ├── PeriodRange-MinToday.htm ├── PeriodRange-Parameters.htm ├── SetValueInInput.htm ├── StartEnd-DataAttributes.htm ├── View-BasedOnDocumentWidth.htm ├── View-DataAttributes.htm ├── View-Inline.htm ├── ViewDropdown-Parameters.htm ├── ViewPopup-Parameters.htm ├── index.htm ├── jQuery Mobile Project │ ├── BasicExampleMobile.htm │ ├── BasicExampleMobileWithLink.htm │ ├── jquery.mobile-1.4.0.min.css │ └── jquery.mobile-1.4.0.min.js ├── jQueryUI-Tabs │ ├── BasicDateTimePicker-jQueryUI-ElementsGroup.htm │ ├── BasicDateTimePicker-jQueryUI.htm │ ├── images │ │ ├── ui-icons_444444_256x240.png │ │ ├── ui-icons_555555_256x240.png │ │ ├── ui-icons_777620_256x240.png │ │ ├── ui-icons_777777_256x240.png │ │ ├── ui-icons_cc0000_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ ├── jquery-ui.min.css │ ├── jquery-ui.min.js │ └── jquery-ui.theme.min.css ├── jquery-1.11.0.min.js ├── jquery-3.1.0.min.js └── zepto-1.1.6-Custom.min.js ├── dist ├── DateTimePicker-Zepto.js ├── DateTimePicker-ltie9.css ├── DateTimePicker-ltie9.js ├── DateTimePicker-ltie9.min.css ├── DateTimePicker-ltie9.min.js ├── DateTimePicker.css ├── DateTimePicker.js ├── DateTimePicker.min.css ├── DateTimePicker.min.js ├── DateTimePicker_iOS_fix.js └── i18n │ ├── DateTimePicker-i18n-cs.js │ ├── DateTimePicker-i18n-de.js │ ├── DateTimePicker-i18n-en.js │ ├── DateTimePicker-i18n-es.js │ ├── DateTimePicker-i18n-fr.js │ ├── DateTimePicker-i18n-it.js │ ├── DateTimePicker-i18n-ja.js │ ├── DateTimePicker-i18n-ko.js │ ├── DateTimePicker-i18n-nb.js │ ├── DateTimePicker-i18n-nl.js │ ├── DateTimePicker-i18n-ro.js │ ├── DateTimePicker-i18n-ru.js │ ├── DateTimePicker-i18n-uk.js │ ├── DateTimePicker-i18n-zh-TW.js │ ├── DateTimePicker-i18n.js │ └── DatetimePicker-i18n-zh-CN.js ├── package-lock.json ├── package.json └── src ├── DateTimePicker-Zepto.js ├── DateTimePicker-ltie9.css ├── DateTimePicker-ltie9.js ├── DateTimePicker.css ├── DateTimePicker.js ├── DateTimePicker_iOS_fix.js └── i18n ├── DateTimePicker-i18n-cs.js ├── DateTimePicker-i18n-de.js ├── DateTimePicker-i18n-en.js ├── DateTimePicker-i18n-es.js ├── DateTimePicker-i18n-fr.js ├── DateTimePicker-i18n-it.js ├── DateTimePicker-i18n-ja.js ├── DateTimePicker-i18n-ko.js ├── DateTimePicker-i18n-nb.js ├── DateTimePicker-i18n-nl.js ├── DateTimePicker-i18n-ro.js ├── DateTimePicker-i18n-ru.js ├── DateTimePicker-i18n-uk.js ├── DateTimePicker-i18n-zh-TW.js ├── DateTimePicker-i18n.js └── DatetimePicker-i18n-zh-CN.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | npm-debug.log -------------------------------------------------------------------------------- /DateTimePicker.jquery.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "DateTimePicker", 3 | 4 | "title": "Responsive flat design jQuery DateTime Picker plugin for Web & Mobile", 5 | 6 | "description": "DateTime Picker is a quick highly customizable jQuery plugin. The design is clutter free & well suited for embedding it into mobile application development. Users can change values using +/- buttons or type values directly into the textbox by selecting each value fields. For web, picker can be binded relative to reference element, were it will appear at the bottom of the element. For mobile, the picker can appear as a dialog box covering entire window.", 7 | 8 | "keywords": ["date", "time", "datetime", "plugin", "picker", "DatePicker", "TimePicker", "DateTimePicker", "Responsive", "Flat", "Mobile", "jquery"], 9 | 10 | "version": "0.1.39", 11 | 12 | "author": { 13 | "name": "Lajpat Shah", 14 | "url": "https://github.com/lajpatshah" 15 | }, 16 | 17 | "maintainers": [ 18 | { 19 | "name": "Neha Kadam", 20 | "url": "https://github.com/nehakadam" 21 | } 22 | ], 23 | 24 | "repository": 25 | { 26 | "type" : "git", 27 | "url" : "https://github.com/nehakadam/DateTimePicker.git" 28 | }, 29 | 30 | "homepage": "https://nehakadam.github.io/DateTimePicker/", 31 | 32 | "docs": "https://nehakadam.github.io/DateTimePicker/", 33 | 34 | "licenses": [ 35 | { 36 | "type": "MIT", 37 | "url": "https://github.com/nehakadam/DateTimePicker/blob/master/LICENSE" 38 | } 39 | ], 40 | 41 | "dependencies": 42 | { 43 | "jquery": ">=1.9.1" 44 | }, 45 | 46 | "bugs": "https://github.com/nehakadam/DateTimePicker/issues" 47 | } 48 | -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- 1 | module.exports = function(grunt) 2 | { 3 | var sBanner = '/* ----------------------------------------------------------------------------- ' + 4 | '\n\n jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile' + 5 | '\n Version <%= pkg.version %>' + 6 | '\n Copyright (c)2014-<%= grunt.template.today("yyyy") %> Lajpat Shah' + 7 | '\n Contributors : https://github.com/nehakadam/DateTimePicker/contributors' + 8 | '\n Repository : https://github.com/nehakadam/DateTimePicker' + 9 | '\n Documentation : https://nehakadam.github.io/DateTimePicker' + 10 | '\n\n ----------------------------------------------------------------------------- */\n\n' 11 | 12 | 13 | // Project configuration. 14 | grunt.initConfig( 15 | { 16 | 17 | pkg: grunt.file.readJSON('package.json'), 18 | 19 | concat: { 20 | lang: { 21 | options: { 22 | separator: '\n\n\n\n', 23 | stripBanners: true, 24 | banner: sBanner 25 | }, 26 | 27 | src: ['src/i18n/*', '!src/i18n/DateTimePicker-i18n.js'], 28 | dest: 'src/i18n/DateTimePicker-i18n.js', 29 | nonull: true 30 | } 31 | }, 32 | 33 | copy: { 34 | main: { 35 | expand: true, 36 | cwd: 'src/', 37 | src: '**', 38 | dest: 'dist' 39 | }, 40 | 41 | lang: { 42 | expand: true, 43 | cwd: 'src/i18n', 44 | src: '**', 45 | dest: 'dist/i18n' 46 | } 47 | }, 48 | 49 | uglify: { 50 | options: { 51 | banner: sBanner, 52 | compress: { 53 | drop_console: true 54 | } 55 | }, 56 | build: { 57 | files: { 58 | 'dist/<%= pkg.name %>.min.js': ['src/<%= pkg.name %>.js'], 59 | 'dist/<%= pkg.name %>-ltie9.min.js': ['src/<%= pkg.name %>-ltie9.js'] 60 | } 61 | } 62 | }, 63 | 64 | cssmin: { 65 | options: { 66 | banner: sBanner 67 | }, 68 | build: { 69 | files: { 70 | 'dist/<%= pkg.name %>.min.css': ['src/<%= pkg.name %>.css'], 71 | 'dist/<%= pkg.name %>-ltie9.min.css': ['src/<%= pkg.name %>-ltie9.css'] 72 | } 73 | } 74 | }, 75 | 76 | jshint: { 77 | dist: { 78 | src: ['src/DateTimePicker.js'] 79 | }, 80 | 81 | options: { 82 | strict: false, 83 | curly: false, 84 | eqeqeq: true, 85 | eqnull: true, 86 | browser: true, 87 | devel: true, 88 | //unused: true, 89 | //undef: true, 90 | 91 | globals: { 92 | $: false, 93 | jQuery: false, 94 | define: false, 95 | require: false, 96 | module: false, 97 | DateTimePicker: true 98 | }, 99 | 100 | force: true 101 | } 102 | }, 103 | 104 | csslint: { 105 | dist: { 106 | src: ['src/DateTimePicker.css'] 107 | }, 108 | 109 | options: { 110 | "fallback-colors": false, 111 | "universal-selector": false, 112 | "box-sizing": false, 113 | "display-property-grouping": false 114 | } 115 | } 116 | }); 117 | 118 | // Load the plugin that provides the "uglify" task. 119 | grunt.loadNpmTasks('grunt-contrib-concat'); 120 | grunt.loadNpmTasks('grunt-contrib-uglify'); 121 | grunt.loadNpmTasks('grunt-contrib-cssmin'); 122 | grunt.loadNpmTasks('grunt-contrib-copy'); 123 | grunt.loadNpmTasks('grunt-contrib-jshint'); 124 | grunt.loadNpmTasks('grunt-contrib-csslint'); 125 | 126 | // Default task(s). 127 | // 128 | grunt.registerTask('default', ['uglify', 'cssmin', 'copy']); 129 | grunt.registerTask('lang', ['concat:lang', 'copy:lang']); 130 | grunt.registerTask('lint', ['jshint', 'csslint']); 131 | }; -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014-2019 Lajpat Shah 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | the Software, and to permit persons to whom the Software is furnished to do so, 10 | subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | **Responsive jQuery DateTime Picker library for Web & Mobile** 2 |

3 | ![](https://raw.github.com/nehakadam/DateTimePicker/gh-pages/images/dp-screenshot.png) 4 | ![](https://raw.github.com/nehakadam/DateTimePicker/gh-pages/images/tp-screenshot.png) 5 | ![](https://raw.github.com/nehakadam/DateTimePicker/gh-pages/images/dtp-screenshot.png) 6 | 7 | DateTime Picker is a quick highly customizable jQuery plugin. The design is clutter free & well suited for embedding it into mobile application development. 8 | 9 | Users can change values using +/- buttons or type values directly into the textbox by selecting each value fields. 10 | 11 | For web, picker can be binded relative to reference element, were it will appear at the bottom of the element. For mobile, the picker can appear as a dialog box covering entire window. 12 | 13 | 14 | ## Browser Support 15 | - Chrome, Firefox, Safari, Opera, IE 6+ 16 | - Android 2.3+, iOS 6+, Windows Phone 8 17 | 18 | 19 | ## More Details 20 | For demo & api documentation visit [Plugin Page](http://nehakadam.github.io/DateTimePicker/) 21 | 22 | 23 | ## Build System 24 | 25 | - Install devDependencies listed in "package.json" 26 | 27 | `npm install` 28 | 29 | - Run a command to perform tasks configured in "Gruntfile.js" 30 | 31 | `grunt` 32 | 33 | Tasks configured in "Gruntfile.js" 34 | - Copy "DateTimePicker.js" and "DateTimePicker.css" from "src" folder to "dist" folder. 35 | - Uglify "src/DateTimePicker.js" to "dist/DateTimePicker.min.js" 36 | - Minify "src/DateTimePicker.css" to "dist/DateTimePicker.min.css" 37 | 38 | 39 | ## Installations 40 | 41 | - npm 42 | 43 | `npm install datetimepicker` 44 | 45 | - bower 46 | 47 | `bower install flat-datetimepicker` 48 | 49 | ## CDN 50 | DateTimePicker is hosted on [jsDelivr](http://www.jsdelivr.com). 51 | 52 | Files - Latest 53 | 54 | ``` 55 | 56 | 57 | ``` 58 | 59 | Files - Particular Version 60 | 61 | ``` 62 | 63 | 64 | ``` 65 | 66 | ## Authors 67 | [Neha Kadam](https://github.com/nehakadam): Developer 68 | 69 | Special Thanks: 70 | - [Jean-Christophe Hoelt](https://github.com/j3k0) - NPM packaging. Few customization options. 71 | - [All Contributors](https://github.com/nehakadam/DateTimePicker/contributors) 72 | 73 | 74 | Copyright 2014-2019 [Lajpat Shah](https://github.com/lajpatshah) 75 | 76 | 77 | **I can not actively maintain or reply quickly due to time constraints, please consider this point before using plugin.** 78 | 79 | 80 | ## License 81 | 82 | Licensed under the MIT License 83 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "datetimepicker", 3 | 4 | "description": "Responsive flat design jQuery DateTime Picker plugin for Web & Mobile", 5 | 6 | "keywords": [ 7 | "date", 8 | "time", 9 | "picker", 10 | "flat", 11 | "jquery", 12 | "datetimepicker", 13 | "datepicker", 14 | "timepicker", 15 | "input" 16 | ], 17 | 18 | "version": "0.1.39", 19 | 20 | "homepage": "https://nehakadam.github.io/DateTimePicker/", 21 | 22 | "main": ["dist/DateTimePicker.min.js", "dist/DateTimePicker.min.css"], 23 | 24 | "authors": [ 25 | {"name": "nehakadam"} 26 | ], 27 | 28 | "repository": { 29 | "type": "git", 30 | "url": "git://github.com:nehakadam/DateTimePicker.git" 31 | }, 32 | 33 | "devDependencies": { 34 | "jquery": ">=1.0.0" 35 | }, 36 | 37 | "ignore": [ 38 | "**/.*", 39 | "node_modules", 40 | "package.json" 41 | ] 42 | 43 | } 44 | -------------------------------------------------------------------------------- /demo/AngularJS/BasicDatePicker-AngularJS.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Date Picker with AngularJS 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 20 | 21 | 37 | 38 | 68 | 69 | 70 | 71 | 72 | 73 |

Date :

74 | 75 | 76 |
Date 1 : {{ datestring1 }}
77 | 78 |
79 | 80 | 81 | 82 | -------------------------------------------------------------------------------- /demo/AngularJS/BasicDatePicker-LongTypeOfModel.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | long type of model in AngularJS 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 20 | 21 | 37 | 38 | 70 | 71 | 72 | 73 | 74 | 75 |

Time :

76 | 77 | 78 |
Time : {{ datestring }}
79 | 80 |
81 | 82 | 83 | 84 | -------------------------------------------------------------------------------- /demo/AngularJS/TwoPicker-AngularJS.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Date Picker with AngularJS 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 20 | 21 | 37 | 38 | 103 | 104 | 105 | 106 | 107 | 108 |
109 |

Question Date : {{ question.datestr }}

110 | 111 |
112 | 113 |
114 |

Review Date : {{ reviews.datestr }}

115 | 116 |
117 | 118 | 119 |
120 |
121 | 122 | 123 | 124 | -------------------------------------------------------------------------------- /demo/Basic-Zepto.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Example - Zepto 8 | 9 | 10 | 11 | 12 | 13 | 14 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 |

Date :

38 | 39 | 40 | 41 |

Time :

42 | 43 | 44 | 45 |

DateTime :

46 | 47 | 48 |
49 | 50 | 51 | 59 | 60 | 61 | 62 | 63 | -------------------------------------------------------------------------------- /demo/BasicDatePicker.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Date Picker 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 19 | 20 | 36 | 37 | 38 | 39 | 40 | 41 |

Date :

42 | 43 | 44 |
45 | 46 | 54 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /demo/BasicDateTimePicker.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | DateTime Picker 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 35 | 36 | 37 | 38 | 39 | 40 |

DateTime :

41 | 42 | 43 |
44 | 45 | 53 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /demo/BasicExamples-CustomEvent.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Custom Events 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 53 | 54 | 55 | 56 | 57 | 58 |
59 | 60 |
61 |

Date :

62 | 63 | Show 64 |
65 | 66 |
67 |

Time :

68 | 69 | Show 70 |
71 | 72 |
73 |

DateTime :

74 | 75 | Show 76 |
77 | 78 |
79 | 80 |
81 | 82 | 116 | 117 | 118 | 119 | 120 | -------------------------------------------------------------------------------- /demo/BasicExamples-CustomInputString.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Basic Examples -- Custom Input String 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 50 | 51 | 52 | 53 | 54 | 55 | 56 |

Date :

57 | Set Date 58 | 59 | 60 |

Time :

61 | Set Time 62 | 63 | 64 |

DateTime :

65 | Set DateTime 66 | 67 | 68 |

Date :

69 | 70 | 71 | 72 |

Time :

73 | 74 | 75 | 76 |

DateTime :

77 | 78 | 79 | 80 |
81 | 82 | 83 | 91 | 92 | 93 | 94 | 95 | -------------------------------------------------------------------------------- /demo/BasicExamples-CustomInputValue-Issue125.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Custom Input Value 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 51 | 52 | 53 | 54 | 55 | 56 |

Date :

57 | 58 | 59 |
60 | 61 | 118 | 119 | 120 | 121 | 122 | -------------------------------------------------------------------------------- /demo/BasicExamples-CustomInputValue.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Custom Input Value 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 51 | 52 | 53 | 54 | 55 | 56 |
57 | 58 |
59 |

Date :

60 | 61 | Today 62 | Get Date 63 |
64 | 65 |
66 |

Time :

67 | 68 | Now 69 | Get Time 70 | 71 |

DateTime :

72 | 73 | This Moment 74 | Get DateTime 75 | 76 |
77 | 78 |
79 | 80 |
81 | 82 |
83 | 84 | 177 | 178 | 179 | 180 | 181 | -------------------------------------------------------------------------------- /demo/BasicExamples-ElementsGroup-DataAttribute.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Basic Examples -- Elements Group 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 49 | 50 | 51 | 52 | 53 | 54 |
55 | 56 | 57 |

Date :

58 | 59 | 60 | 61 |

Time :

62 | 63 | 64 | 65 |

DateTime :

66 | 67 | 68 |
69 | 70 |
71 | 72 | 73 |

Date :

74 | 75 | 76 | 77 |

Time :

78 | 79 | 80 | 81 |

DateTime :

82 | 83 | 84 |
85 | 86 |
87 | 88 |
89 | 90 | 108 | 109 | 110 | 111 | 112 | -------------------------------------------------------------------------------- /demo/BasicExamples-ElementsGroup.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Basic Examples -- Elements Group 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 49 | 50 | 51 | 52 | 53 | 54 |
55 | 56 | 57 |

Date :

58 | 59 | 60 | 61 |

Time :

62 | 63 | 64 | 65 |

DateTime :

66 | 67 | 68 |
69 | 70 |
71 | 72 | 73 |

Date :

74 | 75 | 76 | 77 |

Time :

78 | 79 | 80 | 81 |

DateTime :

82 | 83 | 84 |
85 | 86 |
87 | 88 |
89 | 90 | 110 | 111 | 112 | 113 | 114 | -------------------------------------------------------------------------------- /demo/BasicExamples-HumanDateFormatting.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Human Date Formatting 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 35 | 36 | 37 | 38 | 39 | 40 |

Date :

41 | 42 | 43 |

DateTime :

44 | 45 | 46 |
47 | 48 | 69 | 70 | 84 | 85 | 86 | 87 | 88 | -------------------------------------------------------------------------------- /demo/BasicExamples-InputHTML5.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Basic Examples -- Input Type Date | Time | DateTime 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 |

Date :

44 | 45 | 46 | 47 |

Time :

48 | 49 | 50 | 51 |

DateTime :

52 | 53 | 54 |
55 | 56 | 64 | 65 | 66 | 67 | -------------------------------------------------------------------------------- /demo/BasicExamples-InputText.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Basic Examples -- Input Type Text 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 |

Date :

43 | 44 | 45 | 46 |

Time :

47 | 48 | 49 | 50 |

DateTime :

51 | 52 | 53 | 54 |
55 | 56 | 57 | 68 | 69 | 70 | 71 | 72 | -------------------------------------------------------------------------------- /demo/BasicExamples-MinuteInterval-Multiple.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Minute Intervals - Multiple 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 35 | 36 | 37 | 38 | 39 | 40 |
41 |

Time : (1 minute)

42 | 43 |
44 | 45 |
46 |

Time : (5 minutes)

47 | 48 |
49 | 50 |
51 | 52 |
53 | 54 | 72 | 73 | 74 | 75 | -------------------------------------------------------------------------------- /demo/BasicExamples-MinuteInterval.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Minute Interval 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 35 | 36 | 37 | 38 | 39 | 40 |

DateTime :

41 | 42 | 43 |
44 | 45 | 57 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /demo/BasicExamples-NonInputElement.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Basic Examples -- Non Input Element 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 41 | 42 | 43 | 44 | 45 | 46 | 47 |

Date :

48 | 49 | 50 | 51 |

Time :

52 | 53 | 54 | 55 |

DateTime :

56 | 57 | 58 | 59 |
60 | 61 | 62 | 70 | 71 | 72 | 73 | 74 | -------------------------------------------------------------------------------- /demo/BasicExamples-Seconds.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Time and DateTime with Seconds 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 35 | 36 | 37 | 38 | 39 | 40 |

Time : (Format - "hh:mm:ss AA")

41 | 42 | 43 |

Time : (Format - "HH:mm:ss")

44 | 45 | 46 |

DateTime : (Format - "dd-MM-yyyy hh:mm:ss AA")

47 | 48 | 49 |

DateTime : (Format - "dd-MM-yyyy HH:mm:ss")

50 | 51 | 52 |
53 | 54 | 62 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /demo/BasicExamples-SecondsInterval-Multiple.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Seconds Intervals - Multiple 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 35 | 36 | 37 | 38 | 39 | 40 |
41 |

Time : (Format - "HH:mm:ss", Interval - 2 seconds)

42 | 43 |
44 | 45 |
46 |

DateTime : (Format - "dd-MM-yyyy HH:mm:ss", Interval - 5 seconds)

47 | 48 |
49 | 50 |
51 | 52 |
53 | 54 | 72 | 73 | 74 | 75 | -------------------------------------------------------------------------------- /demo/BasicExamples-SecondsInterval.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Seconds Interval 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 35 | 36 | 37 | 38 | 39 | 40 |

Time : (Format - "hh:mm:ss AA")

41 | 42 | 43 |

Time : (Format - "HH:mm:ss")

44 | 45 | 46 |

DateTime : (Format - "dd-MM-yyyy hh:mm:ss AA")

47 | 48 | 49 |

DateTime : (Format - "dd-MM-yyyy HH:mm:ss")

50 | 51 | 52 |
53 | 54 | 66 | 67 | 68 | 69 | -------------------------------------------------------------------------------- /demo/BasicExamples-SetDateTimeOnLoad.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Basic Examples - Set DateTime In Input Field 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 35 | 36 | 37 | 38 | 39 | 40 | 41 |

Date :

42 | 43 | 44 | 45 |

Time :

46 | 47 | 48 | 49 |

DateTime :

50 | 51 | 52 | 53 | 54 |

Date :

55 | 56 | 57 | 58 |

Time :

59 | 60 | 61 | 62 |

DateTime :

63 | 64 | 65 | 66 | 67 |

Date :

68 | 69 | 70 | 71 |

Time :

72 | 73 | 74 | 75 |

DateTime :

76 | 77 | 78 | 79 |
80 | 81 | 82 | 130 | 131 | 141 | 142 | 150 | 151 | 163 | 164 | 165 | 166 | -------------------------------------------------------------------------------- /demo/BasicTimePicker.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Time Picker 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 35 | 36 | 37 | 38 | 39 | 40 |

Time :

41 | 42 | 43 |
44 | 45 | 53 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /demo/Bootstrap Examples/BasicExample-Bootstrap.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Basic Example with Twitter Bootstrap 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
31 | 32 | 33 | 34 |
35 |

Date :

36 | 37 |
38 | 39 | 40 |
41 |

Time :

42 | 43 |
44 | 45 | 46 |
47 |

DateTime :

48 | 49 |
50 | 51 |
52 | 53 |
54 | 55 |
56 | 57 | 71 | 72 | 81 | 82 | 90 | 91 | 103 | 104 | 105 | 106 | -------------------------------------------------------------------------------- /demo/Bootstrap Examples/BasicExample-BootstrapModal.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Basic Example with Twitter Bootstrap 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 38 | 39 | 40 | 41 | 42 | 43 |
44 | 45 |
46 | 47 | 48 | 49 |
50 | 51 |
52 | 53 | 97 | 98 | 99 | 100 | 114 | 115 | 124 | 125 | 133 | 134 | 146 | 147 | 148 | 149 | -------------------------------------------------------------------------------- /demo/Callback-beforeShow.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | beforeShow Callback 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 35 | 36 | 37 | 38 | 39 | 40 |

DateTime :

41 | 42 | 43 |
44 | 45 | 62 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /demo/Events-MouseHold.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | TouchHold Gesture Example 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 20 | 21 | 37 | 38 | 39 | 40 | 41 | 42 |

Date :

43 | 44 | 45 |

Time :

46 | 47 | 48 |

DateTime :

49 | 50 | 51 | 52 | 53 |
54 | 55 | 56 | 57 | 71 | 72 | 73 | 74 | -------------------------------------------------------------------------------- /demo/Events-TouchHold.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | TouchHold Gesture Example 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 20 | 21 | 37 | 38 | 39 | 40 | 41 | 42 |

Date :

43 | 44 | 45 |

Time :

46 | 47 | 48 |

DateTime :

49 | 50 | 51 | 52 | 53 |
54 | 55 | 56 | 57 | 71 | 72 | 73 | 74 | -------------------------------------------------------------------------------- /demo/Format-Both.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Format - Data Attributes and Parameters 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 35 | 36 | 37 | 38 | 39 | 40 | 41 |

Date :

42 | 43 | 44 | 45 |

Time :

46 | 47 | 48 | 49 |

DateTime :

50 | 51 | 52 | 53 | 54 |

Date :

55 | 56 | 57 | 58 |

Time :

59 | 60 | 61 | 62 |

DateTime :

63 | 64 | 65 | 66 | 67 |

Date :

68 | 69 | 70 | 71 |

Time :

72 | 73 | 74 | 75 |

DateTime :

76 | 77 | 78 | 79 |
80 | 81 | 82 | 95 | 96 | 106 | 107 | 115 | 116 | 128 | 129 | 130 | 131 | -------------------------------------------------------------------------------- /demo/Format-DataAttributes.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Format - Data Attributes 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 |

Date :

43 | 44 | 45 | 46 |

Time :

47 | 48 | 49 | 50 |

DateTime :

51 | 52 | 53 |
54 | 55 | 56 | 64 | 65 | 66 | 75 | 76 | 84 | 85 | 99 | 100 | 101 | 102 | -------------------------------------------------------------------------------- /demo/Format-MonthYear.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Format - Month Year 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 35 | 36 | 37 | 38 | 39 | 40 |
41 |

Format - "MM-yyyy"

42 | 43 | 44 |

Format - "yyyy-MM"

45 | 46 |
47 | 48 | 49 |
50 |

Format - "MMM yyyy"

51 | 52 | 53 |

Format - "MMMM yyyy"

54 | 55 |
56 | 57 |
58 | 59 |
60 | 61 | 80 | 81 | 82 | 83 | -------------------------------------------------------------------------------- /demo/Format-Parameters.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Format - Parameters 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 |

Date :

43 | 44 | 45 | 46 |

Time :

47 | 48 | 49 | 50 |

DateTime :

51 | 52 | 53 | 54 |
55 | 56 | 57 | 71 | 72 | 81 | 82 | 90 | 91 | 103 | 104 | 105 | 106 | -------------------------------------------------------------------------------- /demo/FormatConversion.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Basic Examples - Set DateTime In Input Field 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 35 | 36 | 37 | 38 | 39 | 40 |

Date :

41 | 42 | 43 |
44 | 45 | 83 | 84 | 85 | 86 | -------------------------------------------------------------------------------- /demo/Internationalization-Chinese.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Internationalization - German Locale 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 20 | 21 | 37 | 38 | 39 | 40 | 41 | 42 |

Date :

43 | 44 | 45 |

Time :

46 | 47 | 48 |

DateTime :

49 | 50 | 51 |
52 | 53 | 71 | 72 | 73 | 74 | -------------------------------------------------------------------------------- /demo/Internationalization-German.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Internationalization - German Locale 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 19 | 20 | 36 | 37 | 38 | 39 | 40 | 41 |

Date :

42 | 43 | 44 |

Time :

45 | 46 | 47 |

DateTime :

48 | 49 | 50 |
51 | 52 | 90 | 91 | 92 | 93 | -------------------------------------------------------------------------------- /demo/Internationalization.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Internationalization 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 20 | 21 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 |

Date :

46 | 47 | 48 |

Time :

49 | 50 | 51 |

DateTime :

52 | 53 | 54 |
55 | 56 | 91 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /demo/KeyboardNavigation.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Keyboard Navigation 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 35 | 36 | 37 | 38 | 39 | 40 |
41 | 42 | 43 |

Date :

44 | 45 | 46 | 47 |

Time :

48 | 49 | 50 | 51 |

DateTime :

52 | 53 | 54 | 55 |

Date :

56 | 57 | 58 | 59 |

Time :

60 | 61 | 62 | 63 |

DateTime :

64 | 65 | 66 |
67 | 68 |
69 | 70 | 71 | 87 | 88 | 97 | 98 | 106 | 107 | 119 | 120 | 121 | 122 | -------------------------------------------------------------------------------- /demo/PeriodRange-Both.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Period Range - Data Attributes and Parameters 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 35 | 36 | 37 | 38 | 39 | 40 |
41 | 42 | 43 |

Date :

44 | 45 | 46 | 47 |

Time :

48 | 49 | 50 | 51 |

DateTime :

52 | 53 | 54 | 55 |

Date :

56 | 57 | 58 | 59 |

Time :

60 | 61 | 62 | 63 |

DateTime :

64 | 65 | 66 |
67 | 68 |
69 | 70 | 71 | 97 | 98 | 107 | 108 | 116 | 117 | 129 | 130 | 131 | 132 | -------------------------------------------------------------------------------- /demo/PeriodRange-Constant_Date.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Period Range - Minimum Date Today 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 35 | 36 | 37 | 38 | 39 | 40 |
41 | 42 | 43 |

Date :

44 | 45 | 46 |

Time :

47 | 48 | 49 |
50 | 51 |
52 | 53 | 129 | 130 | 139 | 140 | 148 | 149 | 161 | 162 | 163 | 164 | -------------------------------------------------------------------------------- /demo/PeriodRange-DataAttributes.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Period Range - Data Attributes 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 35 | 36 | 37 | 38 | 39 | 40 | 41 |

Date :

42 | 43 | 44 | 45 |

Time :

46 | 47 | 48 | 49 |

DateTime :

50 | 51 | 52 | 53 |
54 | 55 | 56 | 68 | 69 | 70 | 79 | 80 | 88 | 89 | 101 | 102 | 103 | 104 | -------------------------------------------------------------------------------- /demo/PeriodRange-MinNow.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Period Range - Minimum Time Now 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 35 | 36 | 37 | 38 | 39 | 40 |
41 | 42 | 43 |

Date :

44 | 45 | 46 |
47 | 48 |
49 | 50 | 70 | 71 | 80 | 81 | 89 | 90 | 102 | 103 | 104 | 105 | -------------------------------------------------------------------------------- /demo/PeriodRange-MinToday.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Period Range - Minimum Date Today 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 35 | 36 | 37 | 38 | 39 | 40 |
41 | 42 | 43 |

Date :

44 | 45 | 46 |
47 | 48 |
49 | 50 | 69 | 70 | 79 | 80 | 88 | 89 | 101 | 102 | 103 | 104 | -------------------------------------------------------------------------------- /demo/PeriodRange-Parameters.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Period Range - Parameters 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 |

Date :

43 | 44 | 45 | 46 |

Time :

47 | 48 | 49 | 50 |

DateTime :

51 | 52 | 53 | 54 |
55 | 56 | 57 | 78 | 79 | 88 | 89 | 97 | 98 | 110 | 111 | 112 | 113 | -------------------------------------------------------------------------------- /demo/SetValueInInput.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Date Picker 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 35 | 36 | 37 | 38 | 39 | 40 |

Date :

41 | 42 | 43 |

Time :

44 | 45 | 46 |

DateTime :

47 | 48 | 49 |
50 | 51 | 67 | 68 | 69 | 70 | -------------------------------------------------------------------------------- /demo/StartEnd-DataAttributes.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | View -- Data Attributes 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 35 | 36 | 37 | 38 | 39 | 40 | 41 |

Start Date :

42 | 43 | 44 |

End Date :

45 | 46 | 47 | 48 |

Start Time :

49 | 50 | 51 |

End Time :

52 | 53 | 54 | 55 |

Start DateTime :

56 | 57 | 58 |

End DateTime :

59 | 60 | 61 |
62 | 63 | 64 | 72 | 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /demo/View-BasedOnDocumentWidth.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | View -- Based On Document Width 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 |

Date :

43 | 44 | 45 | 46 |

Time :

47 | 48 | 49 | 50 |

DateTime :

51 | 52 | 53 | 54 |
55 | 56 | 57 | 89 | 90 | 91 | 92 | 93 | -------------------------------------------------------------------------------- /demo/View-DataAttributes.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | View -- Data Attributes 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 |

Date :

43 | 44 | 45 | 46 |

Time :

47 | 48 | 49 | 50 |

DateTime :

51 | 52 | 53 | 54 |

Date :

55 | 56 | 57 |

Date :

58 | 59 | 60 | 61 |

Time :

62 | 63 | 64 | 65 |

DateTime :

66 | 67 | 68 | 69 |
70 | 71 | 72 | 80 | 81 | 82 | 83 | 84 | -------------------------------------------------------------------------------- /demo/View-Inline.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | DateTimePicker in Custom Container 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 40 | 41 | 42 | 43 | 44 | 45 |

Date :

46 | 47 | 48 |
49 | 50 | 78 | 79 | 80 | 81 | -------------------------------------------------------------------------------- /demo/ViewDropdown-Parameters.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | View -- Dropdown 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 |

Date :

43 | 44 | 45 | 46 |

Time :

47 | 48 | 49 | 50 |

DateTime :

51 | 52 | 53 | 54 |
55 | 56 | 57 | 69 | 70 | 71 | 72 | 73 | -------------------------------------------------------------------------------- /demo/ViewPopup-Parameters.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | View -- Popup 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 |

Date :

43 | 44 | 45 | 46 |

Time :

47 | 48 | 49 | 50 |

DateTime :

51 | 52 | 53 | 54 |
55 | 56 | 57 | 65 | 66 | 67 | 68 | 69 | -------------------------------------------------------------------------------- /demo/jQuery Mobile Project/BasicExampleMobile.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Period Range - Parameters 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 42 | 43 | 44 | 45 | 46 | 47 | 48 |
49 | 50 |
51 |

Page 1

52 |
53 | 54 |
55 | 56 |

Page 2

57 | 58 | 59 |

Date :

60 | 61 | 62 | 63 |

Time :

64 | 65 | 66 | 67 |

DateTime :

68 | 69 | 70 | Open Popup 71 | 72 |
73 |

This is a completely basic popup, no options set.

74 |

75 | 76 |
77 | 78 |
79 |

Page Footer

80 |
81 |
82 | 83 | 84 |
85 | 86 |
87 |

Page 2

88 |
89 | 90 |
91 | 92 |

Page 1

93 | 94 | 95 |

Date :

96 | 97 | 98 | 99 |

Time :

100 | 101 | 102 | 103 |

DateTime :

104 | 105 | 106 |
107 | 108 |
109 |

Page Footer

110 |
111 | 112 |
113 | 114 | 115 | 116 | 117 | -------------------------------------------------------------------------------- /demo/jQuery Mobile Project/BasicExampleMobileWithLink.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Period Range - Parameters 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 25 | 26 | 27 | 51 | 52 | 53 | 54 | 55 | 56 | 57 |
58 | 59 |
60 |

Page 1

61 | Page 2 62 |
63 | 64 |
65 | 66 | 67 |

Date :

68 | 69 | 70 | 71 |

Time :

72 | 73 | 74 | 75 |

DateTime :

76 | 77 | 78 |
79 | 80 |
81 |

Page Footer

82 |
83 |
84 | 85 | 86 |
87 | 88 |
89 |

Page 2

90 | Page 1 91 |
92 | 93 |
94 | 95 | 96 |

Date :

97 | 98 | 99 | 100 |

Time :

101 | 102 | 103 | 104 |

DateTime :

105 | 106 | 107 |
108 | 109 |
110 |

Page Footer

111 |
112 | 113 |
114 | 115 | 116 | 117 | 118 | -------------------------------------------------------------------------------- /demo/jQueryUI-Tabs/BasicDateTimePicker-jQueryUI-ElementsGroup.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | DateTime Picker 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 23 | 24 | 40 | 41 | 42 | 43 | 44 | 45 |
46 | 47 | 52 | 53 | 54 |
55 | 56 |

Date :

57 | 58 | 59 |
60 | 61 |
62 | 63 |

Time :

64 | 65 | 66 |
67 | 68 |
69 | 70 |

DateTime :

71 | 72 | 73 |
74 | 75 |
76 | 77 | 78 |
79 | 80 |
81 | 82 |
83 | 84 | 85 | 141 | 142 | 143 | 144 | -------------------------------------------------------------------------------- /demo/jQueryUI-Tabs/BasicDateTimePicker-jQueryUI.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | DateTime Picker 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 23 | 24 | 40 | 41 | 42 | 43 | 44 | 45 |
46 | 47 | 52 | 53 | 54 |
55 | 56 |

Date :

57 | 58 | 59 |
60 | 61 |
62 | 63 |

Time :

64 | 65 | 66 |
67 | 68 |
69 | 70 |

DateTime :

71 | 72 | 73 |
74 | 75 |
76 | 77 | 78 |
79 | 80 | 81 | 105 | 106 | 107 | 108 | -------------------------------------------------------------------------------- /demo/jQueryUI-Tabs/images/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nehakadam/DateTimePicker/c0a30c3e81876352da9819c29f7106f909dba7b2/demo/jQueryUI-Tabs/images/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /demo/jQueryUI-Tabs/images/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nehakadam/DateTimePicker/c0a30c3e81876352da9819c29f7106f909dba7b2/demo/jQueryUI-Tabs/images/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /demo/jQueryUI-Tabs/images/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nehakadam/DateTimePicker/c0a30c3e81876352da9819c29f7106f909dba7b2/demo/jQueryUI-Tabs/images/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /demo/jQueryUI-Tabs/images/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nehakadam/DateTimePicker/c0a30c3e81876352da9819c29f7106f909dba7b2/demo/jQueryUI-Tabs/images/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /demo/jQueryUI-Tabs/images/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nehakadam/DateTimePicker/c0a30c3e81876352da9819c29f7106f909dba7b2/demo/jQueryUI-Tabs/images/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /demo/jQueryUI-Tabs/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nehakadam/DateTimePicker/c0a30c3e81876352da9819c29f7106f909dba7b2/demo/jQueryUI-Tabs/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /dist/DateTimePicker-ltie9.css: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | ----------------------------------------------------------------------------- */ 11 | 12 | .dtpicker-cont 13 | { 14 | top: 25%; 15 | } 16 | 17 | .dtpicker-overlay 18 | { 19 | /* For IE 8 */ 20 | -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#20000000,endColorstr=#20000000)"; 21 | /* For IE 5.5 to 7 */ 22 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#20000000, endColorstr=#20000000); 23 | zoom: 1!important; 24 | } -------------------------------------------------------------------------------- /dist/DateTimePicker-ltie9.js: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | ----------------------------------------------------------------------------- */ 11 | 12 | if (!Array.prototype.indexOf) 13 | { 14 | Array.prototype.indexOf = function(elt /*, from*/) 15 | { 16 | var len = this.length; 17 | 18 | var from = Number(arguments[1]) || 0; 19 | from = (from < 0) ? Math.ceil(from) : Math.floor(from); 20 | if (from < 0) 21 | from += len; 22 | 23 | for (; from < len; from++) 24 | { 25 | if (from in this && 26 | this[from] === elt) 27 | return from; 28 | } 29 | return -1; 30 | }; 31 | } 32 | 33 | jQuery.fn.fadeIn = function() 34 | { 35 | this.show(); 36 | } 37 | 38 | jQuery.fn.fadeOut = function() 39 | { 40 | this.hide(); 41 | } -------------------------------------------------------------------------------- /dist/DateTimePicker-ltie9.min.css: -------------------------------------------------------------------------------- 1 | .dtpicker-cont{top:25%}.dtpicker-overlay{zoom:1!important} -------------------------------------------------------------------------------- /dist/DateTimePicker-ltie9.min.js: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | ----------------------------------------------------------------------------- */ 11 | 12 | 13 | Array.prototype.indexOf||(Array.prototype.indexOf=function(t){var r=this.length,n=Number(arguments[1])||0;for((n=n<0?Math.ceil(n):Math.floor(n))<0&&(n+=r);n*{display:block;height:30px;color:#2980b9;text-align:center;line-height:30px}.dtpicker-components .dtpicker-comp>:hover{color:#2980b9}.dtpicker-components .dtpicker-compButtonEnable{opacity:1}.dtpicker-components .dtpicker-compButtonDisable{opacity:.5}.dtpicker-components .dtpicker-compButton{background:#fff;font-size:140%;cursor:pointer}.dtpicker-components .dtpicker-compValue{margin:.4em 0;width:100%;border:none;background:#fff;font-size:100%;-webkit-appearance:none;-moz-appearance:none}.dtpicker-overlay .dtpicker-compValue:focus{outline:0;background:#f2fcff}.dtpicker-buttonCont{overflow:hidden;margin:.2em 1em}.dtpicker-buttonCont .dtpicker-button{display:block;padding:.6em 0;width:47%;background:#ff3b30;color:#fff;text-align:center;font-size:1.3em;cursor:pointer}.dtpicker-buttonCont .dtpicker-button:hover{color:#fff}.dtpicker-singleButton .dtpicker-button{margin:.2em auto}.dtpicker-twoButtons .dtpicker-buttonSet{float:left}.dtpicker-twoButtons .dtpicker-buttonClear{float:right} -------------------------------------------------------------------------------- /dist/DateTimePicker_iOS_fix.js: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | Author : Yanike Mann (https://github.com/yanike) 11 | 12 | ----------------------------------------------------------------------------- */ 13 | 14 | 15 | 16 | /* Detect iOS device */ 17 | var iOS = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream; 18 | 19 | /* Execute if iOS device is found */ 20 | if (iOS) { 21 | function dtpickerContMoveiOS() { 22 | /* Execute if iOS device is found */ 23 | if (iOS) { 24 | /* Get SCROLL location */ 25 | var tscroll = window.scrollY /*Modern Way (Chrome, Firefox)*/ || window.pageYOffset /*Modern IE, including IE11*/ || document.documentElement.scrollTop /*Old IE, 6,7,8*/ ; 26 | /* Calculate position */ 27 | var topscroll = (((document.documentElement.clientHeight / 2) + tscroll) + "px"); 28 | /* Make POSITION ABSOLUTE so iOS devices can interact with DateTimePicker */ 29 | jQuery('.dtpicker-mobile').css('position', 'absolute'); 30 | jQuery('.dtpicker-cont').css('position', 'absolute'); 31 | /* Scroll DateTimePicker into position */ 32 | jQuery('.dtpicker-cont').css('top', topscroll); 33 | } 34 | } 35 | 36 | /* WINDOW EVENTLISTENER to LOAD and SCROLL */ 37 | if (window.addEventListener) { 38 | window.addEventListener('load', dtpickerContMoveiOS, false); 39 | window.addEventListener('scroll', dtpickerContMoveiOS, false); 40 | } else if (window.attachEvent) { 41 | window.attachEvent('on' + 'load', dtpickerContMoveiOS); 42 | window.attachEvent('on' + 'scroll', dtpickerContMoveiOS); 43 | } else { 44 | window['on' + 'load'] = dtpickerContMoveiOS; 45 | window['on' + 'scroll'] = dtpickerContMoveiOS; 46 | } 47 | 48 | /* Makes readonly INPUTS on iOS correctly work */ 49 | $(function() { 50 | $('input[readonly]').on('focus', function(ev) { 51 | $(this).trigger('blur'); 52 | }); 53 | }); 54 | } 55 | -------------------------------------------------------------------------------- /dist/i18n/DateTimePicker-i18n-cs.js: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | ----------------------------------------------------------------------------- */ 11 | 12 | /* 13 | 14 | language: Czech 15 | file: DateTimePicker-i18n-cs 16 | author: aiphee (https://github.com/aiphee) 17 | 18 | */ 19 | 20 | (function ($) { 21 | $.DateTimePicker.i18n["cs"] = $.extend($.DateTimePicker.i18n["cs"], { 22 | 23 | language: "cs", 24 | 25 | dateTimeFormat: "dd-MM-yyyy HH:mm", 26 | dateFormat: "dd-MM-yyyy", 27 | timeFormat: "HH:mm", 28 | 29 | shortDayNames: ["Ne", "Po", "Út", "St", "Čt", "Pá", "So"], 30 | fullDayNames: ["Neděle", "Pondělí", "Úterý", "Středa", "Čtvrtek", "Pátek", "Sobota"], 31 | shortMonthNames: ["Led", "Úno", "Bře", "Dub", "Kvě", "Čer", "čvc", "Srp", "Zář", "Říj", "Lis", "Pro"], 32 | fullMonthNames: ["Leden", "Únor", "Březen", "Duben", "Květen", "Červen", "červenec", "Srpen", "Září", "Říjen", "Listopad", "Prosinec"], 33 | 34 | titleContentDate: "Nastavit datum", 35 | titleContentTime: "Nastavit čas", 36 | titleContentDateTime: "Nastavit datum a čas", 37 | 38 | setButtonContent: "Nastavit", 39 | clearButtonContent: "Resetovat" 40 | 41 | }); 42 | })(jQuery); -------------------------------------------------------------------------------- /dist/i18n/DateTimePicker-i18n-de.js: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | ----------------------------------------------------------------------------- */ 11 | 12 | /* 13 | 14 | language: German 15 | file: DateTimePicker-i18n-de 16 | author: Lu, Feng (https://github.com/solala888) 17 | 18 | */ 19 | 20 | (function ($) { 21 | $.DateTimePicker.i18n["de"] = $.extend($.DateTimePicker.i18n["de"], { 22 | 23 | language: "de", 24 | 25 | dateTimeFormat: "dd-MMM-yyyy HH:mm:ss", 26 | dateFormat: "dd-MMM-yyyy", 27 | timeFormat: "HH:mm:ss", 28 | 29 | shortDayNames: ["So", "Mo", "Di", "Mi", "Do", "Fr", "Sa"], 30 | fullDayNames: ["Sonntag", "Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag", "Samstag"], 31 | shortMonthNames: ["Jan", "Feb", "Mär", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dez"], 32 | fullMonthNames: ["Januar", "Februar", "März", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember"], 33 | 34 | titleContentDate: "Datum auswählen", 35 | titleContentTime: "Zeit auswählen", 36 | titleContentDateTime: "Datum & Zeit auswählen", 37 | 38 | setButtonContent: "Auswählen", 39 | clearButtonContent: "Zurücksetzen", 40 | 41 | formatHumanDate: function(oDate, sMode, sFormat) 42 | { 43 | if(sMode === "date") 44 | return oDate.dayShort + ", " + oDate.dd + " " + oDate.month+ ", " + oDate.yyyy; 45 | else if(sMode === "time") 46 | return oDate.HH + ":" + oDate.mm + ":" + oDate.ss; 47 | else if(sMode === "datetime") 48 | return oDate.dayShort + ", " + oDate.dd + " " + oDate.month+ ", " + oDate.yyyy + " " + oDate.HH + ":" + oDate.mm + ":" + oDate.ss; 49 | } 50 | 51 | }); 52 | })(jQuery); -------------------------------------------------------------------------------- /dist/i18n/DateTimePicker-i18n-en.js: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | ----------------------------------------------------------------------------- */ 11 | 12 | /* 13 | 14 | language: English 15 | file: DateTimePicker-i18n-en 16 | 17 | */ 18 | 19 | (function ($) { 20 | $.DateTimePicker.i18n["en"] = $.extend($.DateTimePicker.i18n["en"], { 21 | 22 | language: "en", 23 | 24 | dateTimeFormat: "dd-MM-yyyy HH:mm", 25 | dateFormat: "dd-MM-yyyy", 26 | timeFormat: "HH:mm", 27 | 28 | shortDayNames: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], 29 | fullDayNames: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"], 30 | shortMonthNames: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], 31 | fullMonthNames: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"], 32 | 33 | titleContentDate: "Set Date", 34 | titleContentTime: "Set Time", 35 | titleContentDateTime: "Set Date & Time", 36 | 37 | setButtonContent: "Set", 38 | clearButtonContent: "Clear" 39 | 40 | }); 41 | })(jQuery); -------------------------------------------------------------------------------- /dist/i18n/DateTimePicker-i18n-es.js: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | ----------------------------------------------------------------------------- */ 11 | 12 | /* 13 | 14 | language: Spanish 15 | file: DateTimePicker-i18n-es 16 | author: kristophone(https://github.com/kristophone) 17 | 18 | */ 19 | 20 | 21 | (function ($) { 22 | $.DateTimePicker.i18n["es"] = $.extend($.DateTimePicker.i18n["es"], { 23 | 24 | language: "es", 25 | 26 | dateTimeFormat: "dd-MMM-yyyy HH:mm:ss", 27 | dateFormat: "dd-MMM-yyyy", 28 | timeFormat: "HH:mm:ss", 29 | 30 | shortDayNames: ["Dom", "Lun", "Mar", "Mié", "Jue", "Vie", "Sáb"], 31 | fullDayNames: ["Domingo", "Lunes", "Martes", "Miércoles", "Jueves", "Viernes", "Sábado"], 32 | shortMonthNames: ["Ene", "Feb", "Mar", "Abr", "May", "Jun", "Jul", "Ago", "Sep", "Oct", "Nov", "Dic"], 33 | fullMonthNames: ["Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre"], 34 | 35 | titleContentDate: "Ingresar fecha", 36 | titleContentTime: "Ingresar hora", 37 | titleContentDateTime: "Ingresar fecha y hora", 38 | 39 | setButtonContent: "Guardar", 40 | clearButtonContent: "Cancelar", 41 | 42 | formatHumanDate: function(oDate, sMode, sFormat) 43 | { 44 | if(sMode === "date") 45 | return oDate.dayShort + ", " + oDate.dd + " " + oDate.month+ ", " + oDate.yyyy; 46 | else if(sMode === "time") 47 | return oDate.HH + ":" + oDate.mm + ":" + oDate.ss; 48 | else if(sMode === "datetime") 49 | return oDate.dayShort + ", " + oDate.dd + " " + oDate.month+ ", " + oDate.yyyy + " " + oDate.HH + ":" + oDate.mm + ":" + oDate.ss; 50 | } 51 | 52 | }); 53 | })(jQuery); 54 | -------------------------------------------------------------------------------- /dist/i18n/DateTimePicker-i18n-fr.js: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | ----------------------------------------------------------------------------- */ 11 | 12 | /* 13 | 14 | language: French 15 | file: DateTimePicker-i18n-fr 16 | author: LivioGama(https://github.com/LivioGama) 17 | 18 | */ 19 | 20 | (function ($) { 21 | $.DateTimePicker.i18n["fr"] = $.extend($.DateTimePicker.i18n["fr"], { 22 | 23 | language: "fr", 24 | 25 | dateTimeFormat: "dd-MM-yyyy HH:mm", 26 | dateFormat: "dd-MM-yyyy", 27 | timeFormat: "HH:mm", 28 | 29 | shortDayNames: ["Dim", "Lun", "Mar", "Mer", "Jeu", "Ven", "Sam"], 30 | fullDayNames: ["Dimanche", "Lundi", "Mardi", "Mercredi", "Jeudi", "Vendredi", "Samedi"], 31 | shortMonthNames: ["Jan", "Fév", "Mar", "Avr", "Mai", "Jun", "Jul", "Aoû", "Sep", "Oct", "Nov", "Déc"], 32 | fullMonthNames: ["Janvier", "Février", "Mars", "Avril", "Mai", "Juin", "Juillet", "Août", "Septembre", "Octobre", "Novembre", "Décembre"], 33 | 34 | titleContentDate: "Choisir une date", 35 | titleContentTime: "Choisir un horaire", 36 | titleContentDateTime: "Choisir une date et un horaire", 37 | 38 | setButtonContent: "Choisir", 39 | clearButtonContent: "Effacer", 40 | formatHumanDate: function(oDate, sMode, sFormat) 41 | { 42 | if(sMode === "date") 43 | return oDate.dayShort + " " + oDate.dd + " " + oDate.month+ " " + oDate.yyyy; 44 | else if(sMode === "time") 45 | return oDate.HH + ":" + oDate.mm + ":" + oDate.ss; 46 | else if(sMode === "datetime") 47 | return oDate.dayShort + " " + oDate.dd + " " + oDate.month+ " " + oDate.yyyy + ", " + oDate.HH + ":" + oDate.mm + ":" + oDate.ss; 48 | } 49 | 50 | }); 51 | })(jQuery); -------------------------------------------------------------------------------- /dist/i18n/DateTimePicker-i18n-it.js: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | ----------------------------------------------------------------------------- */ 11 | 12 | /* 13 | 14 | language: Italiano 15 | file: DateTimePicker-i18n-it 16 | author: Cristian Segattini 17 | 18 | */ 19 | 20 | 21 | (function ($) { 22 | $.DateTimePicker.i18n["it"] = $.extend($.DateTimePicker.i18n["it"], { 23 | 24 | language: "it", 25 | 26 | dateTimeFormat: "dd-MM-yyyy HH:mm", 27 | dateFormat: "dd-MM-yyyy", 28 | timeFormat: "HH:mm", 29 | 30 | shortDayNames: ["Dom", "Lun", "Mar", "Mer", "Gio", "Ven", "Sab"], 31 | fullDayNames: ["Domenica", "Lunedì", "Martedì", "Mercoledì", "Giovedì", "Venerdì", "Sabato"], 32 | shortMonthNames: ["Gen", "Feb", "Mar", "Apr", "Mag", "Giu", "Lug", "Ago", "Set", "Ott", "Nov", "Dic"], 33 | fullMonthNames: ["Gennaio", "Febbraio", "Marzo", "Aprile", "Maggio", "Giugno", "Luglio", "Agosto", "Settembre", "Ottobre", "Novembre", "Dicembre"], 34 | 35 | titleContentDate: "Imposta Data", 36 | titleContentTime: "Imposta Ora", 37 | titleContentDateTime: "Imposta Data & Ora", 38 | 39 | setButtonContent: "Imposta", 40 | clearButtonContent: "Pulisci" 41 | 42 | }); 43 | })(jQuery); 44 | -------------------------------------------------------------------------------- /dist/i18n/DateTimePicker-i18n-ja.js: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | ----------------------------------------------------------------------------- */ 11 | 12 | /* 13 | 14 | language: Japanese 15 | file: DateTimePicker-i18n-ja 16 | author: JasonYCHuang (https://github.com/JasonYCHuang) 17 | 18 | */ 19 | 20 | (function ($) { 21 | $.DateTimePicker.i18n["ja"] = $.extend($.DateTimePicker.i18n["ja"], { 22 | 23 | language: "ja", 24 | labels: { 25 | 'year': '年', 26 | 'month': '月', 27 | 'day': '日', 28 | 'hour': '時', 29 | 'minutes': '分', 30 | 'seconds': '秒', 31 | 'meridiem': '昼' 32 | }, 33 | dateTimeFormat: "yyyy-MM-dd HH:mm", 34 | dateFormat: "yyyy-MM-dd", 35 | timeFormat: "HH:mm", 36 | 37 | shortDayNames: ['日曜日', '月曜日', '火曜日', '水曜日', '木曜日', '金曜日', '土曜日'], 38 | fullDayNames: ['日曜日', '月曜日', '火曜日', '水曜日', '木曜日', '金曜日', '土曜日'], 39 | shortMonthNames: ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 40 | fullMonthNames: ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 41 | 42 | titleContentDate: "日付の設定", 43 | titleContentTime: "時刻の設定", 44 | titleContentDateTime: "日付と時間の設定", 45 | 46 | setButtonContent: "設定", 47 | clearButtonContent: "取消", 48 | formatHumanDate: function (oDate, sMode, sFormat) { 49 | if (sMode === "date") 50 | return oDate.dayShort + ", " + oDate.yyyy + "年" + oDate.month +"月" + oDate.dd + "日"; 51 | else if (sMode === "time") 52 | return oDate.HH + "時" + oDate.mm + "分" + oDate.ss + "秒"; 53 | else if (sMode === "datetime") 54 | return oDate.dayShort + ", " + oDate.yyyy + "年" + oDate.month +"月" + oDate.dd + "日 " + oDate.HH + "時" + oDate.mm + "分"; 55 | } 56 | }); 57 | })(jQuery); 58 | -------------------------------------------------------------------------------- /dist/i18n/DateTimePicker-i18n-ko.js: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | ----------------------------------------------------------------------------- */ 11 | 12 | /* 13 | 14 | language: Korean 15 | file: DateTimePicker-i18n-ko 16 | 17 | */ 18 | 19 | (function ($) { 20 | $.DateTimePicker.i18n["ko"] = $.extend($.DateTimePicker.i18n["ko"], { 21 | 22 | language: "ko", 23 | labels: { 24 | 'year': '년', 25 | 'month': '월', 26 | 'day': '일', 27 | 'hour': '시', 28 | 'minutes': '분', 29 | 'seconds': '초', 30 | 'meridiem': '정오' 31 | }, 32 | dateTimeFormat: "yyyy-MM-dd HH:mm", 33 | dateFormat: "yyyy-MM-dd", 34 | timeFormat: "HH:mm", 35 | 36 | shortDayNames: ["일", "월", "화", "수", "목", "금", "토"], 37 | fullDayNames: ["일요일", "월요일", "화요일", "수요일", "목요일", "금요일", "토요일"], 38 | shortMonthNames: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"], 39 | fullMonthNames: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"], 40 | 41 | titleContentDate: "날짜 설정", 42 | titleContentTime: "시간 설정", 43 | titleContentDateTime: "날짜 및 시간 설정 ", 44 | 45 | setButtonContent: "설정하기", 46 | clearButtonContent: "초기화" 47 | 48 | }); 49 | })(jQuery); -------------------------------------------------------------------------------- /dist/i18n/DateTimePicker-i18n-nb.js: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | ----------------------------------------------------------------------------- */ 11 | 12 | /* 13 | 14 | language: Norsk Bokmål 15 | file: DateTimePicker-i18n-nb 16 | author: Tommy Eliassen (https://github.com/pusle) 17 | 18 | */ 19 | 20 | (function ($) { 21 | $.DateTimePicker.i18n["nb"] = $.extend($.DateTimePicker.i18n["nb"], { 22 | 23 | language: "nb", 24 | 25 | dateTimeFormat: "dd.MM.yyyy HH:mm", 26 | dateFormat: "dd.MM.yyyy", 27 | timeFormat: "HH:mm", 28 | 29 | dateSeparator: ".", 30 | 31 | shortDayNames: ["Søn", "Man", "Tir", "Ons", "Tor", "Fre", "Lør"], 32 | fullDayNames: ["Søndag", "Mandag", "Tirsdag", "Onsdag", "Torsdag", "Fredag", "Lørdag"], 33 | shortMonthNames: ["Jan", "Feb", "Mar", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Des"], 34 | fullMonthNames: ["Januar", "Februar", "Mars", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Desember"], 35 | 36 | titleContentDate: "Sett Dato", 37 | titleContentTime: "Sett Klokkeslett", 38 | titleContentDateTime: "Sett Dato & Klokkeslett", 39 | 40 | setButtonContent: "Bruk", 41 | clearButtonContent: "Nullstill" 42 | 43 | }); 44 | })(jQuery); 45 | -------------------------------------------------------------------------------- /dist/i18n/DateTimePicker-i18n-nl.js: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | ----------------------------------------------------------------------------- */ 11 | 12 | /* 13 | 14 | language: Dutch 15 | file: DateTimePicker-i18n-nl 16 | author: Bernardo(https://github.com/bhulsman) 17 | 18 | */ 19 | 20 | (function ($) { 21 | $.DateTimePicker.i18n["nl"] = $.extend($.DateTimePicker.i18n["nl"], { 22 | 23 | language: "nl", 24 | 25 | dateTimeFormat: "dd-MM-yyyy HH:mm", 26 | dateFormat: "dd-MM-yyyy", 27 | timeFormat: "HH:mm", 28 | 29 | shortDayNames: ["zo", "ma", "di", "wo", "do", "vr", "za"], 30 | fullDayNames: ["zondag", "maandag", "dinsdag", "woensdag", "donderdag", "vrijdag", "zaterdag"], 31 | shortMonthNames: ["jan", "feb", "mrt", "apr", "mei", "jun", "jul", "aug", "sep", "okt", "nov", "dec"], 32 | fullMonthNames: ["januari", "februari", "maart", "april", "mei", "juni", "juli", "augustus", "september", "oktober", "november", "december"], 33 | 34 | titleContentDate: "Kies datum", 35 | titleContentTime: "Kies tijd", 36 | titleContentDateTime: "Kies datum & tijd", 37 | 38 | setButtonContent: "Kiezen", 39 | clearButtonContent: "Leegmaken" 40 | 41 | }); 42 | })(jQuery); 43 | -------------------------------------------------------------------------------- /dist/i18n/DateTimePicker-i18n-ro.js: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | ----------------------------------------------------------------------------- */ 11 | 12 | /* 13 | 14 | language: Romanian 15 | file: DateTimePicker-i18n-nl 16 | author: Radu Mogoș(https://github.com/pixelplant) 17 | 18 | */ 19 | 20 | (function ($) { 21 | $.DateTimePicker.i18n["ro"] = $.extend($.DateTimePicker.i18n["ro"], { 22 | 23 | language: "ro", 24 | 25 | dateTimeFormat: "dd-MM-yyyy HH:mm", 26 | dateFormat: "dd-MM-yyyy", 27 | timeFormat: "HH:mm", 28 | 29 | shortDayNames: ["Dum", "Lun", "Mar", "Mie", "Joi", "Vim", "Sâm"], 30 | fullDayNames: ["Duminică", "Luni", "Marți", "Miercuri", "Joi", "Vineri", "Sâmbătă"], 31 | shortMonthNames: ["Ian", "Feb", "Mar", "Apr", "Mai", "Iun", "Iul", "Aug", "Sep", "Oct", "Noi", "Dec"], 32 | fullMonthNames: ["Ianuarie", "Februarie", "Martie", "Aprilie", "Mai", "Iunie", "Iulie", "August", "Septembrie", "Octombrie", "Noiembrie", "Decembrie"], 33 | 34 | titleContentDate: "Setare Dată", 35 | titleContentTime: "Setare Oră", 36 | titleContentDateTime: "Setare Dată și Oră", 37 | 38 | setButtonContent: "Setează", 39 | clearButtonContent: "Șterge" 40 | 41 | }); 42 | })(jQuery); -------------------------------------------------------------------------------- /dist/i18n/DateTimePicker-i18n-ru.js: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | ----------------------------------------------------------------------------- */ 11 | 12 | /* 13 | 14 | language: Russian 15 | file: DateTimePicker-i18n-ru 16 | author: Valery Bogdanov (https://github.com/radkill) 17 | 18 | */ 19 | 20 | (function ($) { 21 | $.DateTimePicker.i18n["ru"] = $.extend($.DateTimePicker.i18n["ru"], { 22 | 23 | language: "ru", 24 | 25 | dateTimeFormat: "dd-MM-yyyy HH:mm", 26 | dateFormat: "dd-MM-yyyy", 27 | timeFormat: "HH:mm", 28 | 29 | shortDayNames: ["Вс", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб"], 30 | fullDayNames: ["воскресенье", "понедельник", "вторник", "среда", "четверг", "пятница", "суббота"], 31 | shortMonthNames: ["Янв", "Фев", "Мар", "Апр", "Май", "Июн", "Июл", "Авг", "Сен", "Окт", "Ноя", "Дек"], 32 | fullMonthNames: ["января", "февраля", "марта", "апреля", "мая", "июня", "июля", "августа", "сентября", "октября", "ноября", "декабря"], 33 | 34 | titleContentDate: "Выберите дату", 35 | titleContentTime: "Выберите время", 36 | titleContentDateTime: "Выберите дату и время", 37 | 38 | setButtonContent: "Выбрать", 39 | clearButtonContent: "Очистить", 40 | 41 | formatHumanDate: function(oDate, sMode, sFormat) 42 | { 43 | if(sMode === "date") 44 | return oDate.dayShort + ", " + oDate.dd + " " + oDate.month+ " " + oDate.yyyy; 45 | else if(sMode === "time") 46 | return oDate.HH + ":" + oDate.mm + ":" + oDate.ss; 47 | else if(sMode === "datetime") 48 | return oDate.dayShort + ", " + oDate.dd + " " + oDate.month+ " " + oDate.yyyy + ", " + oDate.HH + ":" + oDate.mm + ":" + oDate.ss; 49 | } 50 | 51 | }); 52 | })(jQuery); -------------------------------------------------------------------------------- /dist/i18n/DateTimePicker-i18n-uk.js: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | ----------------------------------------------------------------------------- */ 11 | 12 | /* 13 | 14 | language: Ukrainian 15 | file: DateTimePicker-i18n-uk 16 | author: Valery Bogdanov (https://github.com/radkill) 17 | 18 | */ 19 | 20 | (function ($) { 21 | $.DateTimePicker.i18n["uk"] = $.extend($.DateTimePicker.i18n["uk"], { 22 | 23 | language: "uk", 24 | 25 | dateTimeFormat: "dd-MM-yyyy HH:mm", 26 | dateFormat: "dd-MM-yyyy", 27 | timeFormat: "HH:mm", 28 | 29 | shortDayNames: ["Нд", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб"], 30 | fullDayNames: ["воскресенье", "понедельник", "вторник", "среда", "четверг", "пятница", "суббота"], 31 | shortMonthNames: ["Янв", "Фев", "Мар", "Апр", "Май", "Июн", "Июл", "Авг", "Сен", "Окт", "Ноя", "Дек"], 32 | fullMonthNames: ["января", "февраля", "марта", "апреля", "мая", "июня", "июля", "августа", "сентября", "октября", "ноября", "декабря"], 33 | fullDayNames: ["неділя", "понеділок", "вівторок", "середа", "четвер", "п'ятниця", "субота"], 34 | shortMonthNames: ["Січ", "Лют", "Бер", "Кві", "Тра", "Чер", "Лип", "Сер", "Вер", "Жов", "Лис", "Гру"], 35 | fullMonthNames: ["січня", "лютого", "березня", "квітня", "травня", "червня", "липня", "серпня", "вересня", "жовтня", "листопада", "грудня"], 36 | 37 | titleContentDate: "Виберіть дату", 38 | titleContentTime: "Виберіть час", 39 | titleContentDateTime: "Виберіть дату і час", 40 | 41 | setButtonContent: "Вибрати", 42 | clearButtonContent: "Очистити", 43 | 44 | formatHumanDate: function(oDate, sMode, sFormat) 45 | { 46 | if(sMode === "date") 47 | return oDate.dayShort + ", " + oDate.dd + " " + oDate.month+ " " + oDate.yyyy; 48 | else if(sMode === "time") 49 | return oDate.HH + ":" + oDate.mm + ":" + oDate.ss; 50 | else if(sMode === "datetime") 51 | return oDate.dayShort + ", " + oDate.dd + " " + oDate.month+ " " + oDate.yyyy + ", " + oDate.HH + ":" + oDate.mm + ":" + oDate.ss; 52 | } 53 | 54 | }); 55 | })(jQuery); -------------------------------------------------------------------------------- /dist/i18n/DateTimePicker-i18n-zh-TW.js: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | ----------------------------------------------------------------------------- */ 11 | 12 | /* 13 | 14 | language: Traditional Chinese 15 | file: DateTimePicker-i18n-zh-TW 16 | author: JasonYCHuang (https://github.com/JasonYCHuang) 17 | 18 | */ 19 | 20 | (function ($) { 21 | $.DateTimePicker.i18n["zh-TW"] = $.extend($.DateTimePicker.i18n["zh-TW"], { 22 | 23 | language: "zh-TW", 24 | labels: { 25 | 'year': '年', 26 | 'month': '月', 27 | 'day': '日', 28 | 'hour': '時', 29 | 'minutes': '分', 30 | 'seconds': '秒', 31 | 'meridiem': '午' 32 | }, 33 | dateTimeFormat: "yyyy-MM-dd HH:mm", 34 | dateFormat: "yyyy-MM-dd", 35 | timeFormat: "HH:mm", 36 | 37 | shortDayNames: ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六'], 38 | fullDayNames: ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六'], 39 | shortMonthNames: ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 40 | fullMonthNames: ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 41 | 42 | titleContentDate: "設置日期", 43 | titleContentTime: "設置時間", 44 | titleContentDateTime: "設置日期和時間", 45 | 46 | setButtonContent: "設置", 47 | clearButtonContent: "清除", 48 | formatHumanDate: function (oDate, sMode, sFormat) { 49 | if (sMode === "date") 50 | return oDate.dayShort + ", " + oDate.yyyy + "年" + oDate.month +"月" + oDate.dd + "日"; 51 | else if (sMode === "time") 52 | return oDate.HH + "時" + oDate.mm + "分" + oDate.ss + "秒"; 53 | else if (sMode === "datetime") 54 | return oDate.dayShort + ", " + oDate.yyyy + "年" + oDate.month +"月" + oDate.dd + "日 " + oDate.HH + "時" + oDate.mm + "分"; 55 | } 56 | }); 57 | })(jQuery); 58 | -------------------------------------------------------------------------------- /dist/i18n/DatetimePicker-i18n-zh-CN.js: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | ----------------------------------------------------------------------------- */ 11 | 12 | /* 13 | 14 | language: Simple Chinese 15 | file: DateTimePicker-i18n-zh-CN 16 | author: Calvin(https://github.com/Calvin-he) 17 | 18 | */ 19 | 20 | (function ($) { 21 | $.DateTimePicker.i18n["zh-CN"] = $.extend($.DateTimePicker.i18n["zh-CN"], { 22 | 23 | language: "zh-CN", 24 | labels: { 25 | 'year': '年', 26 | 'month': '月', 27 | 'day': '日', 28 | 'hour': '时', 29 | 'minutes': '分', 30 | 'seconds': '秒', 31 | 'meridiem': '午' 32 | }, 33 | dateTimeFormat: "yyyy-MM-dd HH:mm", 34 | dateFormat: "yyyy-MM-dd", 35 | timeFormat: "HH:mm", 36 | 37 | shortDayNames: ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六'], 38 | fullDayNames: ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六'], 39 | shortMonthNames: ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 40 | fullMonthNames: ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 41 | 42 | titleContentDate: "设置日期", 43 | titleContentTime: "设置时间", 44 | titleContentDateTime: "设置日期和时间", 45 | 46 | setButtonContent: "设置", 47 | clearButtonContent: "清除", 48 | formatHumanDate: function (oDate, sMode, sFormat) { 49 | if (sMode === "date") 50 | return oDate.dayShort + ", " + oDate.yyyy + "年" + oDate.month +"月" + oDate.dd + "日"; 51 | else if (sMode === "time") 52 | return oDate.HH + "时" + oDate.mm + "分" + oDate.ss + "秒"; 53 | else if (sMode === "datetime") 54 | return oDate.dayShort + ", " + oDate.yyyy + "年" + oDate.month +"月" + oDate.dd + "日 " + oDate.HH + "时" + oDate.mm + "分"; 55 | } 56 | }); 57 | })(jQuery); -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "datetimepicker", 3 | "version": "0.1.39", 4 | "description": "Responsive flat design jQuery DateTime Picker plugin for Web & Mobile", 5 | "keywords": [ 6 | "date", 7 | "time", 8 | "picker", 9 | "flat", 10 | "jquery", 11 | "datetimepicker", 12 | "datepicker", 13 | "timepicker", 14 | "input" 15 | ], 16 | "bugs": { 17 | "url": "https://github.com/nehakadam/DateTimePicker/issues", 18 | "email": "nehakadam9@gmail.com" 19 | }, 20 | "author": "Neha Kadam (https://github.com/nehakadam)", 21 | "_npmUser": { 22 | "name": "nehakadam", 23 | "email": "nehakadam9@gmail.com" 24 | }, 25 | "homepage": "https://nehakadam.github.io/DateTimePicker/", 26 | "main": "dist/DateTimePicker.min.js", 27 | "repository": { 28 | "type": "git", 29 | "url": "git://github.com:nehakadam/DateTimePicker.git" 30 | }, 31 | "devDependencies": { 32 | "grunt": "^1.0.4", 33 | "grunt-contrib-concat": "^1.0.1", 34 | "grunt-contrib-copy": "^1.0.0", 35 | "grunt-contrib-csslint": "^2.0.0", 36 | "grunt-contrib-cssmin": "^3.0.0", 37 | "grunt-contrib-jshint": "^2.1.0", 38 | "grunt-contrib-uglify": "^4.0.1" 39 | }, 40 | "peerDependencies": { 41 | "jquery": ">=1.0.0" 42 | }, 43 | "scripts": { 44 | "test": "echo \"Error: no test specified\" && exit 1" 45 | }, 46 | "license": "MIT", 47 | "dependencies": {} 48 | } 49 | -------------------------------------------------------------------------------- /src/DateTimePicker-ltie9.css: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | ----------------------------------------------------------------------------- */ 11 | 12 | .dtpicker-cont 13 | { 14 | top: 25%; 15 | } 16 | 17 | .dtpicker-overlay 18 | { 19 | /* For IE 8 */ 20 | -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#20000000,endColorstr=#20000000)"; 21 | /* For IE 5.5 to 7 */ 22 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#20000000, endColorstr=#20000000); 23 | zoom: 1!important; 24 | } -------------------------------------------------------------------------------- /src/DateTimePicker-ltie9.js: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | ----------------------------------------------------------------------------- */ 11 | 12 | if (!Array.prototype.indexOf) 13 | { 14 | Array.prototype.indexOf = function(elt /*, from*/) 15 | { 16 | var len = this.length; 17 | 18 | var from = Number(arguments[1]) || 0; 19 | from = (from < 0) ? Math.ceil(from) : Math.floor(from); 20 | if (from < 0) 21 | from += len; 22 | 23 | for (; from < len; from++) 24 | { 25 | if (from in this && 26 | this[from] === elt) 27 | return from; 28 | } 29 | return -1; 30 | }; 31 | } 32 | 33 | jQuery.fn.fadeIn = function() 34 | { 35 | this.show(); 36 | } 37 | 38 | jQuery.fn.fadeOut = function() 39 | { 40 | this.hide(); 41 | } -------------------------------------------------------------------------------- /src/DateTimePicker_iOS_fix.js: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | Author : Yanike Mann (https://github.com/yanike) 11 | 12 | ----------------------------------------------------------------------------- */ 13 | 14 | 15 | 16 | /* Detect iOS device */ 17 | var iOS = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream; 18 | 19 | /* Execute if iOS device is found */ 20 | if (iOS) { 21 | function dtpickerContMoveiOS() { 22 | /* Execute if iOS device is found */ 23 | if (iOS) { 24 | /* Get SCROLL location */ 25 | var tscroll = window.scrollY /*Modern Way (Chrome, Firefox)*/ || window.pageYOffset /*Modern IE, including IE11*/ || document.documentElement.scrollTop /*Old IE, 6,7,8*/ ; 26 | /* Calculate position */ 27 | var topscroll = (((document.documentElement.clientHeight / 2) + tscroll) + "px"); 28 | /* Make POSITION ABSOLUTE so iOS devices can interact with DateTimePicker */ 29 | jQuery('.dtpicker-mobile').css('position', 'absolute'); 30 | jQuery('.dtpicker-cont').css('position', 'absolute'); 31 | /* Scroll DateTimePicker into position */ 32 | jQuery('.dtpicker-cont').css('top', topscroll); 33 | } 34 | } 35 | 36 | /* WINDOW EVENTLISTENER to LOAD and SCROLL */ 37 | if (window.addEventListener) { 38 | window.addEventListener('load', dtpickerContMoveiOS, false); 39 | window.addEventListener('scroll', dtpickerContMoveiOS, false); 40 | } else if (window.attachEvent) { 41 | window.attachEvent('on' + 'load', dtpickerContMoveiOS); 42 | window.attachEvent('on' + 'scroll', dtpickerContMoveiOS); 43 | } else { 44 | window['on' + 'load'] = dtpickerContMoveiOS; 45 | window['on' + 'scroll'] = dtpickerContMoveiOS; 46 | } 47 | 48 | /* Makes readonly INPUTS on iOS correctly work */ 49 | $(function() { 50 | $('input[readonly]').on('focus', function(ev) { 51 | $(this).trigger('blur'); 52 | }); 53 | }); 54 | } 55 | -------------------------------------------------------------------------------- /src/i18n/DateTimePicker-i18n-cs.js: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | ----------------------------------------------------------------------------- */ 11 | 12 | /* 13 | 14 | language: Czech 15 | file: DateTimePicker-i18n-cs 16 | author: aiphee (https://github.com/aiphee) 17 | 18 | */ 19 | 20 | (function ($) { 21 | $.DateTimePicker.i18n["cs"] = $.extend($.DateTimePicker.i18n["cs"], { 22 | 23 | language: "cs", 24 | 25 | dateTimeFormat: "dd-MM-yyyy HH:mm", 26 | dateFormat: "dd-MM-yyyy", 27 | timeFormat: "HH:mm", 28 | 29 | shortDayNames: ["Ne", "Po", "Út", "St", "Čt", "Pá", "So"], 30 | fullDayNames: ["Neděle", "Pondělí", "Úterý", "Středa", "Čtvrtek", "Pátek", "Sobota"], 31 | shortMonthNames: ["Led", "Úno", "Bře", "Dub", "Kvě", "Čer", "čvc", "Srp", "Zář", "Říj", "Lis", "Pro"], 32 | fullMonthNames: ["Leden", "Únor", "Březen", "Duben", "Květen", "Červen", "červenec", "Srpen", "Září", "Říjen", "Listopad", "Prosinec"], 33 | 34 | titleContentDate: "Nastavit datum", 35 | titleContentTime: "Nastavit čas", 36 | titleContentDateTime: "Nastavit datum a čas", 37 | 38 | setButtonContent: "Nastavit", 39 | clearButtonContent: "Resetovat" 40 | 41 | }); 42 | })(jQuery); -------------------------------------------------------------------------------- /src/i18n/DateTimePicker-i18n-de.js: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | ----------------------------------------------------------------------------- */ 11 | 12 | /* 13 | 14 | language: German 15 | file: DateTimePicker-i18n-de 16 | author: Lu, Feng (https://github.com/solala888) 17 | 18 | */ 19 | 20 | (function ($) { 21 | $.DateTimePicker.i18n["de"] = $.extend($.DateTimePicker.i18n["de"], { 22 | 23 | language: "de", 24 | 25 | dateTimeFormat: "dd-MMM-yyyy HH:mm:ss", 26 | dateFormat: "dd-MMM-yyyy", 27 | timeFormat: "HH:mm:ss", 28 | 29 | shortDayNames: ["So", "Mo", "Di", "Mi", "Do", "Fr", "Sa"], 30 | fullDayNames: ["Sonntag", "Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag", "Samstag"], 31 | shortMonthNames: ["Jan", "Feb", "Mär", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dez"], 32 | fullMonthNames: ["Januar", "Februar", "März", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember"], 33 | 34 | titleContentDate: "Datum auswählen", 35 | titleContentTime: "Zeit auswählen", 36 | titleContentDateTime: "Datum & Zeit auswählen", 37 | 38 | setButtonContent: "Auswählen", 39 | clearButtonContent: "Zurücksetzen", 40 | 41 | formatHumanDate: function(oDate, sMode, sFormat) 42 | { 43 | if(sMode === "date") 44 | return oDate.dayShort + ", " + oDate.dd + " " + oDate.month+ ", " + oDate.yyyy; 45 | else if(sMode === "time") 46 | return oDate.HH + ":" + oDate.mm + ":" + oDate.ss; 47 | else if(sMode === "datetime") 48 | return oDate.dayShort + ", " + oDate.dd + " " + oDate.month+ ", " + oDate.yyyy + " " + oDate.HH + ":" + oDate.mm + ":" + oDate.ss; 49 | } 50 | 51 | }); 52 | })(jQuery); -------------------------------------------------------------------------------- /src/i18n/DateTimePicker-i18n-en.js: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | ----------------------------------------------------------------------------- */ 11 | 12 | /* 13 | 14 | language: English 15 | file: DateTimePicker-i18n-en 16 | 17 | */ 18 | 19 | (function ($) { 20 | $.DateTimePicker.i18n["en"] = $.extend($.DateTimePicker.i18n["en"], { 21 | 22 | language: "en", 23 | 24 | dateTimeFormat: "dd-MM-yyyy HH:mm", 25 | dateFormat: "dd-MM-yyyy", 26 | timeFormat: "HH:mm", 27 | 28 | shortDayNames: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], 29 | fullDayNames: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"], 30 | shortMonthNames: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], 31 | fullMonthNames: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"], 32 | 33 | titleContentDate: "Set Date", 34 | titleContentTime: "Set Time", 35 | titleContentDateTime: "Set Date & Time", 36 | 37 | setButtonContent: "Set", 38 | clearButtonContent: "Clear" 39 | 40 | }); 41 | })(jQuery); -------------------------------------------------------------------------------- /src/i18n/DateTimePicker-i18n-es.js: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | ----------------------------------------------------------------------------- */ 11 | 12 | /* 13 | 14 | language: Spanish 15 | file: DateTimePicker-i18n-es 16 | author: kristophone(https://github.com/kristophone) 17 | 18 | */ 19 | 20 | 21 | (function ($) { 22 | $.DateTimePicker.i18n["es"] = $.extend($.DateTimePicker.i18n["es"], { 23 | 24 | language: "es", 25 | 26 | dateTimeFormat: "dd-MMM-yyyy HH:mm:ss", 27 | dateFormat: "dd-MMM-yyyy", 28 | timeFormat: "HH:mm:ss", 29 | 30 | shortDayNames: ["Dom", "Lun", "Mar", "Mié", "Jue", "Vie", "Sáb"], 31 | fullDayNames: ["Domingo", "Lunes", "Martes", "Miércoles", "Jueves", "Viernes", "Sábado"], 32 | shortMonthNames: ["Ene", "Feb", "Mar", "Abr", "May", "Jun", "Jul", "Ago", "Sep", "Oct", "Nov", "Dic"], 33 | fullMonthNames: ["Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre"], 34 | 35 | titleContentDate: "Ingresar fecha", 36 | titleContentTime: "Ingresar hora", 37 | titleContentDateTime: "Ingresar fecha y hora", 38 | 39 | setButtonContent: "Guardar", 40 | clearButtonContent: "Cancelar", 41 | 42 | formatHumanDate: function(oDate, sMode, sFormat) 43 | { 44 | if(sMode === "date") 45 | return oDate.dayShort + ", " + oDate.dd + " " + oDate.month+ ", " + oDate.yyyy; 46 | else if(sMode === "time") 47 | return oDate.HH + ":" + oDate.mm + ":" + oDate.ss; 48 | else if(sMode === "datetime") 49 | return oDate.dayShort + ", " + oDate.dd + " " + oDate.month+ ", " + oDate.yyyy + " " + oDate.HH + ":" + oDate.mm + ":" + oDate.ss; 50 | } 51 | 52 | }); 53 | })(jQuery); 54 | -------------------------------------------------------------------------------- /src/i18n/DateTimePicker-i18n-fr.js: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | ----------------------------------------------------------------------------- */ 11 | 12 | /* 13 | 14 | language: French 15 | file: DateTimePicker-i18n-fr 16 | author: LivioGama(https://github.com/LivioGama) 17 | 18 | */ 19 | 20 | (function ($) { 21 | $.DateTimePicker.i18n["fr"] = $.extend($.DateTimePicker.i18n["fr"], { 22 | 23 | language: "fr", 24 | 25 | dateTimeFormat: "dd-MM-yyyy HH:mm", 26 | dateFormat: "dd-MM-yyyy", 27 | timeFormat: "HH:mm", 28 | 29 | shortDayNames: ["Dim", "Lun", "Mar", "Mer", "Jeu", "Ven", "Sam"], 30 | fullDayNames: ["Dimanche", "Lundi", "Mardi", "Mercredi", "Jeudi", "Vendredi", "Samedi"], 31 | shortMonthNames: ["Jan", "Fév", "Mar", "Avr", "Mai", "Jun", "Jul", "Aoû", "Sep", "Oct", "Nov", "Déc"], 32 | fullMonthNames: ["Janvier", "Février", "Mars", "Avril", "Mai", "Juin", "Juillet", "Août", "Septembre", "Octobre", "Novembre", "Décembre"], 33 | 34 | titleContentDate: "Choisir une date", 35 | titleContentTime: "Choisir un horaire", 36 | titleContentDateTime: "Choisir une date et un horaire", 37 | 38 | setButtonContent: "Choisir", 39 | clearButtonContent: "Effacer", 40 | formatHumanDate: function(oDate, sMode, sFormat) 41 | { 42 | if(sMode === "date") 43 | return oDate.dayShort + " " + oDate.dd + " " + oDate.month+ " " + oDate.yyyy; 44 | else if(sMode === "time") 45 | return oDate.HH + ":" + oDate.mm + ":" + oDate.ss; 46 | else if(sMode === "datetime") 47 | return oDate.dayShort + " " + oDate.dd + " " + oDate.month+ " " + oDate.yyyy + ", " + oDate.HH + ":" + oDate.mm + ":" + oDate.ss; 48 | } 49 | 50 | }); 51 | })(jQuery); -------------------------------------------------------------------------------- /src/i18n/DateTimePicker-i18n-it.js: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | ----------------------------------------------------------------------------- */ 11 | 12 | /* 13 | 14 | language: Italiano 15 | file: DateTimePicker-i18n-it 16 | author: Cristian Segattini 17 | 18 | */ 19 | 20 | 21 | (function ($) { 22 | $.DateTimePicker.i18n["it"] = $.extend($.DateTimePicker.i18n["it"], { 23 | 24 | language: "it", 25 | 26 | dateTimeFormat: "dd-MM-yyyy HH:mm", 27 | dateFormat: "dd-MM-yyyy", 28 | timeFormat: "HH:mm", 29 | 30 | shortDayNames: ["Dom", "Lun", "Mar", "Mer", "Gio", "Ven", "Sab"], 31 | fullDayNames: ["Domenica", "Lunedì", "Martedì", "Mercoledì", "Giovedì", "Venerdì", "Sabato"], 32 | shortMonthNames: ["Gen", "Feb", "Mar", "Apr", "Mag", "Giu", "Lug", "Ago", "Set", "Ott", "Nov", "Dic"], 33 | fullMonthNames: ["Gennaio", "Febbraio", "Marzo", "Aprile", "Maggio", "Giugno", "Luglio", "Agosto", "Settembre", "Ottobre", "Novembre", "Dicembre"], 34 | 35 | titleContentDate: "Imposta Data", 36 | titleContentTime: "Imposta Ora", 37 | titleContentDateTime: "Imposta Data & Ora", 38 | 39 | setButtonContent: "Imposta", 40 | clearButtonContent: "Pulisci" 41 | 42 | }); 43 | })(jQuery); 44 | -------------------------------------------------------------------------------- /src/i18n/DateTimePicker-i18n-ja.js: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | ----------------------------------------------------------------------------- */ 11 | 12 | /* 13 | 14 | language: Japanese 15 | file: DateTimePicker-i18n-ja 16 | author: JasonYCHuang (https://github.com/JasonYCHuang) 17 | 18 | */ 19 | 20 | (function ($) { 21 | $.DateTimePicker.i18n["ja"] = $.extend($.DateTimePicker.i18n["ja"], { 22 | 23 | language: "ja", 24 | labels: { 25 | 'year': '年', 26 | 'month': '月', 27 | 'day': '日', 28 | 'hour': '時', 29 | 'minutes': '分', 30 | 'seconds': '秒', 31 | 'meridiem': '昼' 32 | }, 33 | dateTimeFormat: "yyyy-MM-dd HH:mm", 34 | dateFormat: "yyyy-MM-dd", 35 | timeFormat: "HH:mm", 36 | 37 | shortDayNames: ['日曜日', '月曜日', '火曜日', '水曜日', '木曜日', '金曜日', '土曜日'], 38 | fullDayNames: ['日曜日', '月曜日', '火曜日', '水曜日', '木曜日', '金曜日', '土曜日'], 39 | shortMonthNames: ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 40 | fullMonthNames: ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 41 | 42 | titleContentDate: "日付の設定", 43 | titleContentTime: "時刻の設定", 44 | titleContentDateTime: "日付と時間の設定", 45 | 46 | setButtonContent: "設定", 47 | clearButtonContent: "取消", 48 | formatHumanDate: function (oDate, sMode, sFormat) { 49 | if (sMode === "date") 50 | return oDate.dayShort + ", " + oDate.yyyy + "年" + oDate.month +"月" + oDate.dd + "日"; 51 | else if (sMode === "time") 52 | return oDate.HH + "時" + oDate.mm + "分" + oDate.ss + "秒"; 53 | else if (sMode === "datetime") 54 | return oDate.dayShort + ", " + oDate.yyyy + "年" + oDate.month +"月" + oDate.dd + "日 " + oDate.HH + "時" + oDate.mm + "分"; 55 | } 56 | }); 57 | })(jQuery); 58 | -------------------------------------------------------------------------------- /src/i18n/DateTimePicker-i18n-ko.js: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | ----------------------------------------------------------------------------- */ 11 | 12 | /* 13 | 14 | language: Korean 15 | file: DateTimePicker-i18n-ko 16 | 17 | */ 18 | 19 | (function ($) { 20 | $.DateTimePicker.i18n["ko"] = $.extend($.DateTimePicker.i18n["ko"], { 21 | 22 | language: "ko", 23 | labels: { 24 | 'year': '년', 25 | 'month': '월', 26 | 'day': '일', 27 | 'hour': '시', 28 | 'minutes': '분', 29 | 'seconds': '초', 30 | 'meridiem': '정오' 31 | }, 32 | dateTimeFormat: "yyyy-MM-dd HH:mm", 33 | dateFormat: "yyyy-MM-dd", 34 | timeFormat: "HH:mm", 35 | 36 | shortDayNames: ["일", "월", "화", "수", "목", "금", "토"], 37 | fullDayNames: ["일요일", "월요일", "화요일", "수요일", "목요일", "금요일", "토요일"], 38 | shortMonthNames: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"], 39 | fullMonthNames: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"], 40 | 41 | titleContentDate: "날짜 설정", 42 | titleContentTime: "시간 설정", 43 | titleContentDateTime: "날짜 및 시간 설정 ", 44 | 45 | setButtonContent: "설정하기", 46 | clearButtonContent: "초기화" 47 | 48 | }); 49 | })(jQuery); -------------------------------------------------------------------------------- /src/i18n/DateTimePicker-i18n-nb.js: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | ----------------------------------------------------------------------------- */ 11 | 12 | /* 13 | 14 | language: Norsk Bokmål 15 | file: DateTimePicker-i18n-nb 16 | author: Tommy Eliassen (https://github.com/pusle) 17 | 18 | */ 19 | 20 | (function ($) { 21 | $.DateTimePicker.i18n["nb"] = $.extend($.DateTimePicker.i18n["nb"], { 22 | 23 | language: "nb", 24 | 25 | dateTimeFormat: "dd.MM.yyyy HH:mm", 26 | dateFormat: "dd.MM.yyyy", 27 | timeFormat: "HH:mm", 28 | 29 | dateSeparator: ".", 30 | 31 | shortDayNames: ["Søn", "Man", "Tir", "Ons", "Tor", "Fre", "Lør"], 32 | fullDayNames: ["Søndag", "Mandag", "Tirsdag", "Onsdag", "Torsdag", "Fredag", "Lørdag"], 33 | shortMonthNames: ["Jan", "Feb", "Mar", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Des"], 34 | fullMonthNames: ["Januar", "Februar", "Mars", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Desember"], 35 | 36 | titleContentDate: "Sett Dato", 37 | titleContentTime: "Sett Klokkeslett", 38 | titleContentDateTime: "Sett Dato & Klokkeslett", 39 | 40 | setButtonContent: "Bruk", 41 | clearButtonContent: "Nullstill" 42 | 43 | }); 44 | })(jQuery); 45 | -------------------------------------------------------------------------------- /src/i18n/DateTimePicker-i18n-nl.js: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | ----------------------------------------------------------------------------- */ 11 | 12 | /* 13 | 14 | language: Dutch 15 | file: DateTimePicker-i18n-nl 16 | author: Bernardo(https://github.com/bhulsman) 17 | 18 | */ 19 | 20 | (function ($) { 21 | $.DateTimePicker.i18n["nl"] = $.extend($.DateTimePicker.i18n["nl"], { 22 | 23 | language: "nl", 24 | 25 | dateTimeFormat: "dd-MM-yyyy HH:mm", 26 | dateFormat: "dd-MM-yyyy", 27 | timeFormat: "HH:mm", 28 | 29 | shortDayNames: ["zo", "ma", "di", "wo", "do", "vr", "za"], 30 | fullDayNames: ["zondag", "maandag", "dinsdag", "woensdag", "donderdag", "vrijdag", "zaterdag"], 31 | shortMonthNames: ["jan", "feb", "mrt", "apr", "mei", "jun", "jul", "aug", "sep", "okt", "nov", "dec"], 32 | fullMonthNames: ["januari", "februari", "maart", "april", "mei", "juni", "juli", "augustus", "september", "oktober", "november", "december"], 33 | 34 | titleContentDate: "Kies datum", 35 | titleContentTime: "Kies tijd", 36 | titleContentDateTime: "Kies datum & tijd", 37 | 38 | setButtonContent: "Kiezen", 39 | clearButtonContent: "Leegmaken" 40 | 41 | }); 42 | })(jQuery); 43 | -------------------------------------------------------------------------------- /src/i18n/DateTimePicker-i18n-ro.js: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | ----------------------------------------------------------------------------- */ 11 | 12 | /* 13 | 14 | language: Romanian 15 | file: DateTimePicker-i18n-nl 16 | author: Radu Mogoș(https://github.com/pixelplant) 17 | 18 | */ 19 | 20 | (function ($) { 21 | $.DateTimePicker.i18n["ro"] = $.extend($.DateTimePicker.i18n["ro"], { 22 | 23 | language: "ro", 24 | 25 | dateTimeFormat: "dd-MM-yyyy HH:mm", 26 | dateFormat: "dd-MM-yyyy", 27 | timeFormat: "HH:mm", 28 | 29 | shortDayNames: ["Dum", "Lun", "Mar", "Mie", "Joi", "Vim", "Sâm"], 30 | fullDayNames: ["Duminică", "Luni", "Marți", "Miercuri", "Joi", "Vineri", "Sâmbătă"], 31 | shortMonthNames: ["Ian", "Feb", "Mar", "Apr", "Mai", "Iun", "Iul", "Aug", "Sep", "Oct", "Noi", "Dec"], 32 | fullMonthNames: ["Ianuarie", "Februarie", "Martie", "Aprilie", "Mai", "Iunie", "Iulie", "August", "Septembrie", "Octombrie", "Noiembrie", "Decembrie"], 33 | 34 | titleContentDate: "Setare Dată", 35 | titleContentTime: "Setare Oră", 36 | titleContentDateTime: "Setare Dată și Oră", 37 | 38 | setButtonContent: "Setează", 39 | clearButtonContent: "Șterge" 40 | 41 | }); 42 | })(jQuery); -------------------------------------------------------------------------------- /src/i18n/DateTimePicker-i18n-ru.js: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | ----------------------------------------------------------------------------- */ 11 | 12 | /* 13 | 14 | language: Russian 15 | file: DateTimePicker-i18n-ru 16 | author: Valery Bogdanov (https://github.com/radkill) 17 | 18 | */ 19 | 20 | (function ($) { 21 | $.DateTimePicker.i18n["ru"] = $.extend($.DateTimePicker.i18n["ru"], { 22 | 23 | language: "ru", 24 | 25 | dateTimeFormat: "dd-MM-yyyy HH:mm", 26 | dateFormat: "dd-MM-yyyy", 27 | timeFormat: "HH:mm", 28 | 29 | shortDayNames: ["Вс", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб"], 30 | fullDayNames: ["воскресенье", "понедельник", "вторник", "среда", "четверг", "пятница", "суббота"], 31 | shortMonthNames: ["Янв", "Фев", "Мар", "Апр", "Май", "Июн", "Июл", "Авг", "Сен", "Окт", "Ноя", "Дек"], 32 | fullMonthNames: ["января", "февраля", "марта", "апреля", "мая", "июня", "июля", "августа", "сентября", "октября", "ноября", "декабря"], 33 | 34 | titleContentDate: "Выберите дату", 35 | titleContentTime: "Выберите время", 36 | titleContentDateTime: "Выберите дату и время", 37 | 38 | setButtonContent: "Выбрать", 39 | clearButtonContent: "Очистить", 40 | 41 | formatHumanDate: function(oDate, sMode, sFormat) 42 | { 43 | if(sMode === "date") 44 | return oDate.dayShort + ", " + oDate.dd + " " + oDate.month+ " " + oDate.yyyy; 45 | else if(sMode === "time") 46 | return oDate.HH + ":" + oDate.mm + ":" + oDate.ss; 47 | else if(sMode === "datetime") 48 | return oDate.dayShort + ", " + oDate.dd + " " + oDate.month+ " " + oDate.yyyy + ", " + oDate.HH + ":" + oDate.mm + ":" + oDate.ss; 49 | } 50 | 51 | }); 52 | })(jQuery); -------------------------------------------------------------------------------- /src/i18n/DateTimePicker-i18n-uk.js: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | ----------------------------------------------------------------------------- */ 11 | 12 | /* 13 | 14 | language: Ukrainian 15 | file: DateTimePicker-i18n-uk 16 | author: Valery Bogdanov (https://github.com/radkill) 17 | 18 | */ 19 | 20 | (function ($) { 21 | $.DateTimePicker.i18n["uk"] = $.extend($.DateTimePicker.i18n["uk"], { 22 | 23 | language: "uk", 24 | 25 | dateTimeFormat: "dd-MM-yyyy HH:mm", 26 | dateFormat: "dd-MM-yyyy", 27 | timeFormat: "HH:mm", 28 | 29 | shortDayNames: ["Нд", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб"], 30 | fullDayNames: ["воскресенье", "понедельник", "вторник", "среда", "четверг", "пятница", "суббота"], 31 | shortMonthNames: ["Янв", "Фев", "Мар", "Апр", "Май", "Июн", "Июл", "Авг", "Сен", "Окт", "Ноя", "Дек"], 32 | fullMonthNames: ["января", "февраля", "марта", "апреля", "мая", "июня", "июля", "августа", "сентября", "октября", "ноября", "декабря"], 33 | fullDayNames: ["неділя", "понеділок", "вівторок", "середа", "четвер", "п'ятниця", "субота"], 34 | shortMonthNames: ["Січ", "Лют", "Бер", "Кві", "Тра", "Чер", "Лип", "Сер", "Вер", "Жов", "Лис", "Гру"], 35 | fullMonthNames: ["січня", "лютого", "березня", "квітня", "травня", "червня", "липня", "серпня", "вересня", "жовтня", "листопада", "грудня"], 36 | 37 | titleContentDate: "Виберіть дату", 38 | titleContentTime: "Виберіть час", 39 | titleContentDateTime: "Виберіть дату і час", 40 | 41 | setButtonContent: "Вибрати", 42 | clearButtonContent: "Очистити", 43 | 44 | formatHumanDate: function(oDate, sMode, sFormat) 45 | { 46 | if(sMode === "date") 47 | return oDate.dayShort + ", " + oDate.dd + " " + oDate.month+ " " + oDate.yyyy; 48 | else if(sMode === "time") 49 | return oDate.HH + ":" + oDate.mm + ":" + oDate.ss; 50 | else if(sMode === "datetime") 51 | return oDate.dayShort + ", " + oDate.dd + " " + oDate.month+ " " + oDate.yyyy + ", " + oDate.HH + ":" + oDate.mm + ":" + oDate.ss; 52 | } 53 | 54 | }); 55 | })(jQuery); -------------------------------------------------------------------------------- /src/i18n/DateTimePicker-i18n-zh-TW.js: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | ----------------------------------------------------------------------------- */ 11 | 12 | /* 13 | 14 | language: Traditional Chinese 15 | file: DateTimePicker-i18n-zh-TW 16 | author: JasonYCHuang (https://github.com/JasonYCHuang) 17 | 18 | */ 19 | 20 | (function ($) { 21 | $.DateTimePicker.i18n["zh-TW"] = $.extend($.DateTimePicker.i18n["zh-TW"], { 22 | 23 | language: "zh-TW", 24 | labels: { 25 | 'year': '年', 26 | 'month': '月', 27 | 'day': '日', 28 | 'hour': '時', 29 | 'minutes': '分', 30 | 'seconds': '秒', 31 | 'meridiem': '午' 32 | }, 33 | dateTimeFormat: "yyyy-MM-dd HH:mm", 34 | dateFormat: "yyyy-MM-dd", 35 | timeFormat: "HH:mm", 36 | 37 | shortDayNames: ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六'], 38 | fullDayNames: ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六'], 39 | shortMonthNames: ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 40 | fullMonthNames: ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 41 | 42 | titleContentDate: "設置日期", 43 | titleContentTime: "設置時間", 44 | titleContentDateTime: "設置日期和時間", 45 | 46 | setButtonContent: "設置", 47 | clearButtonContent: "清除", 48 | formatHumanDate: function (oDate, sMode, sFormat) { 49 | if (sMode === "date") 50 | return oDate.dayShort + ", " + oDate.yyyy + "年" + oDate.month +"月" + oDate.dd + "日"; 51 | else if (sMode === "time") 52 | return oDate.HH + "時" + oDate.mm + "分" + oDate.ss + "秒"; 53 | else if (sMode === "datetime") 54 | return oDate.dayShort + ", " + oDate.yyyy + "年" + oDate.month +"月" + oDate.dd + "日 " + oDate.HH + "時" + oDate.mm + "分"; 55 | } 56 | }); 57 | })(jQuery); 58 | -------------------------------------------------------------------------------- /src/i18n/DatetimePicker-i18n-zh-CN.js: -------------------------------------------------------------------------------- 1 | /* ----------------------------------------------------------------------------- 2 | 3 | jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile 4 | Version 0.1.39 5 | Copyright (c)2014-2019 Lajpat Shah 6 | Contributors : https://github.com/nehakadam/DateTimePicker/contributors 7 | Repository : https://github.com/nehakadam/DateTimePicker 8 | Documentation : https://nehakadam.github.io/DateTimePicker 9 | 10 | ----------------------------------------------------------------------------- */ 11 | 12 | /* 13 | 14 | language: Simple Chinese 15 | file: DateTimePicker-i18n-zh-CN 16 | author: Calvin(https://github.com/Calvin-he) 17 | 18 | */ 19 | 20 | (function ($) { 21 | $.DateTimePicker.i18n["zh-CN"] = $.extend($.DateTimePicker.i18n["zh-CN"], { 22 | 23 | language: "zh-CN", 24 | labels: { 25 | 'year': '年', 26 | 'month': '月', 27 | 'day': '日', 28 | 'hour': '时', 29 | 'minutes': '分', 30 | 'seconds': '秒', 31 | 'meridiem': '午' 32 | }, 33 | dateTimeFormat: "yyyy-MM-dd HH:mm", 34 | dateFormat: "yyyy-MM-dd", 35 | timeFormat: "HH:mm", 36 | 37 | shortDayNames: ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六'], 38 | fullDayNames: ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六'], 39 | shortMonthNames: ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 40 | fullMonthNames: ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 41 | 42 | titleContentDate: "设置日期", 43 | titleContentTime: "设置时间", 44 | titleContentDateTime: "设置日期和时间", 45 | 46 | setButtonContent: "设置", 47 | clearButtonContent: "清除", 48 | formatHumanDate: function (oDate, sMode, sFormat) { 49 | if (sMode === "date") 50 | return oDate.dayShort + ", " + oDate.yyyy + "年" + oDate.month +"月" + oDate.dd + "日"; 51 | else if (sMode === "time") 52 | return oDate.HH + "时" + oDate.mm + "分" + oDate.ss + "秒"; 53 | else if (sMode === "datetime") 54 | return oDate.dayShort + ", " + oDate.yyyy + "年" + oDate.month +"月" + oDate.dd + "日 " + oDate.HH + "时" + oDate.mm + "分"; 55 | } 56 | }); 57 | })(jQuery); --------------------------------------------------------------------------------