bootstrap-datetimepicker.js 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971
  1. /* =========================================================
  2. * bootstrap-datetimepicker.js
  3. * =========================================================
  4. * Copyright 2012 Stefan Petre
  5. *
  6. * Improvements by Andrew Rowls
  7. * Improvements by Sébastien Malot
  8. * Improvements by Yun Lai
  9. * Improvements by Kenneth Henderick
  10. * Improvements by CuGBabyBeaR
  11. * Improvements by Christian Vaas <auspex@auspex.eu>
  12. *
  13. * Project URL : http://www.malot.fr/bootstrap-datetimepicker
  14. *
  15. * Licensed under the Apache License, Version 2.0 (the "License");
  16. * you may not use this file except in compliance with the License.
  17. * You may obtain a copy of the License at
  18. *
  19. * http://www.apache.org/licenses/LICENSE-2.0
  20. *
  21. * Unless required by applicable law or agreed to in writing, software
  22. * distributed under the License is distributed on an "AS IS" BASIS,
  23. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  24. * See the License for the specific language governing permissions and
  25. * limitations under the License.
  26. * ========================================================= */
  27. (function(factory){
  28. if (typeof define === 'function' && define.amd)
  29. define(['jquery'], factory);
  30. else if (typeof exports === 'object')
  31. factory(require('jquery'));
  32. else
  33. factory(jQuery);
  34. }(function($, undefined){
  35. // Add ECMA262-5 Array methods if not supported natively (IE8)
  36. if (!('indexOf' in Array.prototype)) {
  37. Array.prototype.indexOf = function (find, i) {
  38. if (i === undefined) i = 0;
  39. if (i < 0) i += this.length;
  40. if (i < 0) i = 0;
  41. for (var n = this.length; i < n; i++) {
  42. if (i in this && this[i] === find) {
  43. return i;
  44. }
  45. }
  46. return -1;
  47. }
  48. }
  49. function elementOrParentIsFixed (element) {
  50. var $element = $(element);
  51. var $checkElements = $element.add($element.parents());
  52. var isFixed = false;
  53. $checkElements.each(function(){
  54. if ($(this).css('position') === 'fixed') {
  55. isFixed = true;
  56. return false;
  57. }
  58. });
  59. return isFixed;
  60. }
  61. // Add timezone abbreviation support for ie6+, Chrome, Firefox
  62. function timeZoneAbbreviation() {
  63. var abbreviation, date, formattedStr, i, len, matchedStrings, ref, str;
  64. date = (new Date).toString();
  65. formattedStr = ((ref = date.split('(')[1]) != null ? ref.slice(0, -1) : void 0) || date.split(' ');
  66. if (formattedStr instanceof Array) {
  67. matchedStrings = [];
  68. for (i = 0, len = formattedStr.length; i < len; i++) {
  69. str = formattedStr[i];
  70. if (abbreviation = (ref = str.match(/\b[A-Z]+\b/)) != null ? ref[0] : void 0) {
  71. matchedStrings.push(abbreviation);
  72. }
  73. }
  74. formattedStr = matchedStrings.pop();
  75. }
  76. return formattedStr;
  77. };
  78. function UTCDate() {
  79. return new Date(Date.UTC.apply(Date, arguments));
  80. }
  81. function UTCToday() {
  82. var today = new Date();
  83. return UTCDate(today.getUTCFullYear(), today.getUTCMonth(), today.getUTCDate(), today.getUTCHours(), today.getUTCMinutes(), today.getUTCSeconds(), 0);
  84. }
  85. // Picker object
  86. var Datetimepicker = function (element, options) {
  87. var that = this;
  88. this.element = $(element);
  89. // add container for single page application
  90. // when page switch the datetimepicker div will be removed also.
  91. this.container = options.container || 'body';
  92. this.language = options.language || this.element.data('date-language') || 'en';
  93. this.language = this.language in dates ? this.language : this.language.split('-')[0]; // fr-CA fallback to fr
  94. this.language = this.language in dates ? this.language : 'en';
  95. this.isRTL = dates[this.language].rtl || false;
  96. this.formatType = options.formatType || this.element.data('format-type') || 'standard';
  97. this.format = DPGlobal.parseFormat(options.format || this.element.data('date-format') || dates[this.language].format || DPGlobal.getDefaultFormat(this.formatType, 'input'), this.formatType);
  98. this.isInline = false;
  99. this.isVisible = false;
  100. this.isInput = this.element.is('input');
  101. this.fontAwesome = options.fontAwesome || this.element.data('font-awesome') || false;
  102. this.bootcssVer = options.bootcssVer || (this.isInput ? (this.element.is('.form-control') ? 3 : 2) : ( this.bootcssVer = this.element.is('.input-group') ? 3 : 2 ));
  103. this.component = this.element.is('.date') ? ( this.bootcssVer == 3 ? this.element.find('.input-group-addon .glyphicon-th, .input-group-addon .glyphicon-time, .input-group-addon .glyphicon-remove, .input-group-addon .glyphicon-calendar, .input-group-addon .fa-calendar, .input-group-addon .fa-clock-o').parent() : this.element.find('.add-on .icon-th, .add-on .icon-time, .add-on .icon-calendar, .add-on .fa-calendar, .add-on .fa-clock-o').parent()) : false;
  104. this.componentReset = this.element.is('.date') ? ( this.bootcssVer == 3 ? this.element.find('.input-group-addon .glyphicon-remove, .input-group-addon .fa-times').parent():this.element.find('.add-on .icon-remove, .add-on .fa-times').parent()) : false;
  105. this.hasInput = this.component && this.element.find('input').length;
  106. if (this.component && this.component.length === 0) {
  107. this.component = false;
  108. }
  109. this.linkField = options.linkField || this.element.data('link-field') || false;
  110. this.linkFormat = DPGlobal.parseFormat(options.linkFormat || this.element.data('link-format') || DPGlobal.getDefaultFormat(this.formatType, 'link'), this.formatType);
  111. this.minuteStep = options.minuteStep || this.element.data('minute-step') || 5;
  112. this.pickerPosition = options.pickerPosition || this.element.data('picker-position') || 'bottom-right';
  113. this.showMeridian = options.showMeridian || this.element.data('show-meridian') || false;
  114. this.initialDate = options.initialDate || new Date();
  115. this.zIndex = options.zIndex || this.element.data('z-index') || undefined;
  116. this.title = typeof options.title === 'undefined' ? false : options.title;
  117. this.timezone = options.timezone || timeZoneAbbreviation();
  118. this.icons = {
  119. leftArrow: this.fontAwesome ? 'fa-arrow-left' : (this.bootcssVer === 3 ? 'glyphicon-arrow-left' : 'icon-arrow-left'),
  120. rightArrow: this.fontAwesome ? 'fa-arrow-right' : (this.bootcssVer === 3 ? 'glyphicon-arrow-right' : 'icon-arrow-right')
  121. }
  122. this.icontype = this.fontAwesome ? 'fa' : 'glyphicon';
  123. this._attachEvents();
  124. this.clickedOutside = function (e) {
  125. // Clicked outside the datetimepicker, hide it
  126. if ($(e.target).closest('.datetimepicker').length === 0) {
  127. that.hide();
  128. }
  129. }
  130. this.formatViewType = 'datetime';
  131. if ('formatViewType' in options) {
  132. this.formatViewType = options.formatViewType;
  133. } else if ('formatViewType' in this.element.data()) {
  134. this.formatViewType = this.element.data('formatViewType');
  135. }
  136. this.minView = 0;
  137. if ('minView' in options) {
  138. this.minView = options.minView;
  139. } else if ('minView' in this.element.data()) {
  140. this.minView = this.element.data('min-view');
  141. }
  142. this.minView = DPGlobal.convertViewMode(this.minView);
  143. this.maxView = DPGlobal.modes.length - 1;
  144. if ('maxView' in options) {
  145. this.maxView = options.maxView;
  146. } else if ('maxView' in this.element.data()) {
  147. this.maxView = this.element.data('max-view');
  148. }
  149. this.maxView = DPGlobal.convertViewMode(this.maxView);
  150. this.wheelViewModeNavigation = false;
  151. if ('wheelViewModeNavigation' in options) {
  152. this.wheelViewModeNavigation = options.wheelViewModeNavigation;
  153. } else if ('wheelViewModeNavigation' in this.element.data()) {
  154. this.wheelViewModeNavigation = this.element.data('view-mode-wheel-navigation');
  155. }
  156. this.wheelViewModeNavigationInverseDirection = false;
  157. if ('wheelViewModeNavigationInverseDirection' in options) {
  158. this.wheelViewModeNavigationInverseDirection = options.wheelViewModeNavigationInverseDirection;
  159. } else if ('wheelViewModeNavigationInverseDirection' in this.element.data()) {
  160. this.wheelViewModeNavigationInverseDirection = this.element.data('view-mode-wheel-navigation-inverse-dir');
  161. }
  162. this.wheelViewModeNavigationDelay = 100;
  163. if ('wheelViewModeNavigationDelay' in options) {
  164. this.wheelViewModeNavigationDelay = options.wheelViewModeNavigationDelay;
  165. } else if ('wheelViewModeNavigationDelay' in this.element.data()) {
  166. this.wheelViewModeNavigationDelay = this.element.data('view-mode-wheel-navigation-delay');
  167. }
  168. this.startViewMode = 2;
  169. if ('startView' in options) {
  170. this.startViewMode = options.startView;
  171. } else if ('startView' in this.element.data()) {
  172. this.startViewMode = this.element.data('start-view');
  173. }
  174. this.startViewMode = DPGlobal.convertViewMode(this.startViewMode);
  175. this.viewMode = this.startViewMode;
  176. this.viewSelect = this.minView;
  177. if ('viewSelect' in options) {
  178. this.viewSelect = options.viewSelect;
  179. } else if ('viewSelect' in this.element.data()) {
  180. this.viewSelect = this.element.data('view-select');
  181. }
  182. this.viewSelect = DPGlobal.convertViewMode(this.viewSelect);
  183. this.forceParse = true;
  184. if ('forceParse' in options) {
  185. this.forceParse = options.forceParse;
  186. } else if ('dateForceParse' in this.element.data()) {
  187. this.forceParse = this.element.data('date-force-parse');
  188. }
  189. var template = this.bootcssVer === 3 ? DPGlobal.templateV3 : DPGlobal.template;
  190. while (template.indexOf('{iconType}') !== -1) {
  191. template = template.replace('{iconType}', this.icontype);
  192. }
  193. while (template.indexOf('{leftArrow}') !== -1) {
  194. template = template.replace('{leftArrow}', this.icons.leftArrow);
  195. }
  196. while (template.indexOf('{rightArrow}') !== -1) {
  197. template = template.replace('{rightArrow}', this.icons.rightArrow);
  198. }
  199. this.picker = $(template)
  200. .appendTo(this.isInline ? this.element : this.container) // 'body')
  201. .on({
  202. click: $.proxy(this.click, this),
  203. mousedown: $.proxy(this.mousedown, this)
  204. });
  205. if (this.wheelViewModeNavigation) {
  206. if ($.fn.mousewheel) {
  207. this.picker.on({mousewheel: $.proxy(this.mousewheel, this)});
  208. } else {
  209. console.log('Mouse Wheel event is not supported. Please include the jQuery Mouse Wheel plugin before enabling this option');
  210. }
  211. }
  212. if (this.isInline) {
  213. this.picker.addClass('datetimepicker-inline');
  214. } else {
  215. this.picker.addClass('datetimepicker-dropdown-' + this.pickerPosition + ' dropdown-menu');
  216. }
  217. if (this.isRTL) {
  218. this.picker.addClass('datetimepicker-rtl');
  219. var selector = this.bootcssVer === 3 ? '.prev span, .next span' : '.prev i, .next i';
  220. this.picker.find(selector).toggleClass(this.icons.leftArrow + ' ' + this.icons.rightArrow);
  221. }
  222. $(document).on('mousedown', this.clickedOutside);
  223. this.autoclose = false;
  224. if ('autoclose' in options) {
  225. this.autoclose = options.autoclose;
  226. } else if ('dateAutoclose' in this.element.data()) {
  227. this.autoclose = this.element.data('date-autoclose');
  228. }
  229. this.keyboardNavigation = true;
  230. if ('keyboardNavigation' in options) {
  231. this.keyboardNavigation = options.keyboardNavigation;
  232. } else if ('dateKeyboardNavigation' in this.element.data()) {
  233. this.keyboardNavigation = this.element.data('date-keyboard-navigation');
  234. }
  235. this.todayBtn = (options.todayBtn || this.element.data('date-today-btn') || false);
  236. this.clearBtn = (options.clearBtn || this.element.data('date-clear-btn') || false);
  237. this.todayHighlight = (options.todayHighlight || this.element.data('date-today-highlight') || false);
  238. this.weekStart = 0;
  239. if (typeof options.weekStart !== 'undefined') {
  240. this.weekStart = options.weekStart;
  241. } else if (typeof this.element.data('date-weekstart') !== 'undefined') {
  242. this.weekStart = this.element.data('date-weekstart');
  243. } else if (typeof dates[this.language].weekStart !== 'undefined') {
  244. this.weekStart = dates[this.language].weekStart;
  245. }
  246. this.weekStart = this.weekStart % 7;
  247. this.weekEnd = ((this.weekStart + 6) % 7);
  248. this.onRenderDay = function (day) {
  249. var render = (options.onRenderDay || function () { return []; })(day);
  250. if (typeof render == 'string') {
  251. render = [render];
  252. }
  253. var res = ['day'];
  254. return res.concat((render ? render : []));
  255. };
  256. this.onRenderHour = function (hour) {
  257. var render = (options.onRenderHour || function () { return []; })(hour);
  258. var res = ['hour'];
  259. if (typeof render == 'string') {
  260. render = [render];
  261. }
  262. return res.concat((render ? render : []));
  263. };
  264. this.onRenderMinute = function (minute) {
  265. var render = (options.onRenderMinute || function () { return []; })(minute);
  266. var res = ['minute'];
  267. if (typeof render == 'string') {
  268. render = [render];
  269. }
  270. return res.concat((render ? render : []));
  271. };
  272. this.onRenderYear = function (year) {
  273. var render = (options.onRenderYear || function () { return []; })(year);
  274. var res = ['year'];
  275. if (typeof render == 'string') {
  276. render = [render];
  277. }
  278. return res.concat((render ? render : []));
  279. }
  280. this.onRenderMonth = function (month) {
  281. var render = (options.onRenderMonth || function () { return []; })(month);
  282. var res = ['month'];
  283. if (typeof render == 'string') {
  284. render = [render];
  285. }
  286. return res.concat((render ? render : []));
  287. }
  288. this.startDate = -Infinity;
  289. this.endDate = Infinity;
  290. this.datesDisabled = [];
  291. this.daysOfWeekDisabled = [];
  292. this.setStartDate(options.startDate || this.element.data('date-startdate'));
  293. this.setEndDate(options.endDate || this.element.data('date-enddate'));
  294. this.setDatesDisabled(options.datesDisabled || this.element.data('date-dates-disabled'));
  295. this.setDaysOfWeekDisabled(options.daysOfWeekDisabled || this.element.data('date-days-of-week-disabled'));
  296. this.setMinutesDisabled(options.minutesDisabled || this.element.data('date-minute-disabled'));
  297. this.setHoursDisabled(options.hoursDisabled || this.element.data('date-hour-disabled'));
  298. this.fillDow();
  299. this.fillMonths();
  300. this.update();
  301. this.showMode();
  302. if (this.isInline) {
  303. this.show();
  304. }
  305. };
  306. Datetimepicker.prototype = {
  307. constructor: Datetimepicker,
  308. _events: [],
  309. _attachEvents: function () {
  310. this._detachEvents();
  311. if (this.isInput) { // single input
  312. this._events = [
  313. [this.element, {
  314. focus: $.proxy(this.show, this),
  315. keyup: $.proxy(this.update, this),
  316. keydown: $.proxy(this.keydown, this)
  317. }]
  318. ];
  319. }
  320. else if (this.component && this.hasInput) { // component: input + button
  321. this._events = [
  322. // For components that are not readonly, allow keyboard nav
  323. [this.element.find('input'), {
  324. focus: $.proxy(this.show, this),
  325. keyup: $.proxy(this.update, this),
  326. keydown: $.proxy(this.keydown, this)
  327. }],
  328. [this.component, {
  329. click: $.proxy(this.show, this)
  330. }]
  331. ];
  332. if (this.componentReset) {
  333. this._events.push([
  334. this.componentReset,
  335. {click: $.proxy(this.reset, this)}
  336. ]);
  337. }
  338. }
  339. else if (this.element.is('div')) { // inline datetimepicker
  340. this.isInline = true;
  341. }
  342. else {
  343. this._events = [
  344. [this.element, {
  345. click: $.proxy(this.show, this)
  346. }]
  347. ];
  348. }
  349. for (var i = 0, el, ev; i < this._events.length; i++) {
  350. el = this._events[i][0];
  351. ev = this._events[i][1];
  352. el.on(ev);
  353. }
  354. },
  355. _detachEvents: function () {
  356. for (var i = 0, el, ev; i < this._events.length; i++) {
  357. el = this._events[i][0];
  358. ev = this._events[i][1];
  359. el.off(ev);
  360. }
  361. this._events = [];
  362. },
  363. show: function (e) {
  364. this.picker.show();
  365. this.height = this.component ? this.component.outerHeight() : this.element.outerHeight();
  366. if (this.forceParse) {
  367. this.update();
  368. }
  369. this.place();
  370. $(window).on('resize', $.proxy(this.place, this));
  371. if (e) {
  372. e.stopPropagation();
  373. e.preventDefault();
  374. }
  375. this.isVisible = true;
  376. this.element.trigger({
  377. type: 'show',
  378. date: this.date
  379. });
  380. },
  381. hide: function (e) {
  382. if (!this.isVisible) return;
  383. if (this.isInline) return;
  384. this.picker.hide();
  385. $(window).off('resize', this.place);
  386. this.viewMode = this.startViewMode;
  387. this.showMode();
  388. if (!this.isInput) {
  389. $(document).off('mousedown', this.hide);
  390. }
  391. if (
  392. this.forceParse &&
  393. (
  394. this.isInput && this.element.val() ||
  395. this.hasInput && this.element.find('input').val()
  396. )
  397. )
  398. this.setValue();
  399. this.isVisible = false;
  400. this.element.trigger({
  401. type: 'hide',
  402. date: this.date
  403. });
  404. },
  405. remove: function () {
  406. this._detachEvents();
  407. $(document).off('mousedown', this.clickedOutside);
  408. this.picker.remove();
  409. delete this.picker;
  410. delete this.element.data().datetimepicker;
  411. },
  412. getDate: function () {
  413. var d = this.getUTCDate();
  414. if (d === null) {
  415. return null;
  416. }
  417. return new Date(d.getTime() + (d.getTimezoneOffset() * 60000));
  418. },
  419. getUTCDate: function () {
  420. return this.date;
  421. },
  422. getInitialDate: function () {
  423. return this.initialDate
  424. },
  425. setInitialDate: function (initialDate) {
  426. this.initialDate = initialDate;
  427. },
  428. setDate: function (d) {
  429. this.setUTCDate(new Date(d.getTime() - (d.getTimezoneOffset() * 60000)));
  430. },
  431. setUTCDate: function (d) {
  432. if (d >= this.startDate && d <= this.endDate) {
  433. this.date = d;
  434. this.setValue();
  435. this.viewDate = this.date;
  436. this.fill();
  437. } else {
  438. this.element.trigger({
  439. type: 'outOfRange',
  440. date: d,
  441. startDate: this.startDate,
  442. endDate: this.endDate
  443. });
  444. }
  445. },
  446. setFormat: function (format) {
  447. this.format = DPGlobal.parseFormat(format, this.formatType);
  448. var element;
  449. if (this.isInput) {
  450. element = this.element;
  451. } else if (this.component) {
  452. element = this.element.find('input');
  453. }
  454. if (element && element.val()) {
  455. this.setValue();
  456. }
  457. },
  458. setValue: function () {
  459. var formatted = this.getFormattedDate();
  460. if (!this.isInput) {
  461. if (this.component) {
  462. this.element.find('input').val(formatted);
  463. }
  464. this.element.data('date', formatted);
  465. } else {
  466. this.element.val(formatted);
  467. }
  468. if (this.linkField) {
  469. $('#' + this.linkField).val(this.getFormattedDate(this.linkFormat));
  470. }
  471. },
  472. getFormattedDate: function (format) {
  473. if (format == undefined) format = this.format;
  474. return DPGlobal.formatDate(this.date, format, this.language, this.formatType, this.timezone);
  475. },
  476. setStartDate: function (startDate) {
  477. this.startDate = startDate || -Infinity;
  478. if (this.startDate !== -Infinity) {
  479. this.startDate = DPGlobal.parseDate(this.startDate, this.format, this.language, this.formatType, this.timezone);
  480. }
  481. this.update();
  482. this.updateNavArrows();
  483. },
  484. setEndDate: function (endDate) {
  485. this.endDate = endDate || Infinity;
  486. if (this.endDate !== Infinity) {
  487. this.endDate = DPGlobal.parseDate(this.endDate, this.format, this.language, this.formatType, this.timezone);
  488. }
  489. this.update();
  490. this.updateNavArrows();
  491. },
  492. setDatesDisabled: function (datesDisabled) {
  493. this.datesDisabled = datesDisabled || [];
  494. if (!$.isArray(this.datesDisabled)) {
  495. this.datesDisabled = this.datesDisabled.split(/,\s*/);
  496. }
  497. var mThis = this;
  498. this.datesDisabled = $.map(this.datesDisabled, function (d) {
  499. return DPGlobal.parseDate(d, mThis.format, mThis.language, mThis.formatType, mThis.timezone).toDateString();
  500. });
  501. this.update();
  502. this.updateNavArrows();
  503. },
  504. setTitle: function (selector, value) {
  505. return this.picker.find(selector)
  506. .find('th:eq(1)')
  507. .text(this.title === false ? value : this.title);
  508. },
  509. setDaysOfWeekDisabled: function (daysOfWeekDisabled) {
  510. this.daysOfWeekDisabled = daysOfWeekDisabled || [];
  511. if (!$.isArray(this.daysOfWeekDisabled)) {
  512. this.daysOfWeekDisabled = this.daysOfWeekDisabled.split(/,\s*/);
  513. }
  514. this.daysOfWeekDisabled = $.map(this.daysOfWeekDisabled, function (d) {
  515. return parseInt(d, 10);
  516. });
  517. this.update();
  518. this.updateNavArrows();
  519. },
  520. setMinutesDisabled: function (minutesDisabled) {
  521. this.minutesDisabled = minutesDisabled || [];
  522. if (!$.isArray(this.minutesDisabled)) {
  523. this.minutesDisabled = this.minutesDisabled.split(/,\s*/);
  524. }
  525. this.minutesDisabled = $.map(this.minutesDisabled, function (d) {
  526. return parseInt(d, 10);
  527. });
  528. this.update();
  529. this.updateNavArrows();
  530. },
  531. setHoursDisabled: function (hoursDisabled) {
  532. this.hoursDisabled = hoursDisabled || [];
  533. if (!$.isArray(this.hoursDisabled)) {
  534. this.hoursDisabled = this.hoursDisabled.split(/,\s*/);
  535. }
  536. this.hoursDisabled = $.map(this.hoursDisabled, function (d) {
  537. return parseInt(d, 10);
  538. });
  539. this.update();
  540. this.updateNavArrows();
  541. },
  542. place: function () {
  543. if (this.isInline) return;
  544. if (!this.zIndex) {
  545. var index_highest = 0;
  546. $('div').each(function () {
  547. var index_current = parseInt($(this).css('zIndex'), 10);
  548. if (index_current > index_highest) {
  549. index_highest = index_current;
  550. }
  551. });
  552. this.zIndex = index_highest + 10;
  553. }
  554. var offset, top, left, containerOffset;
  555. if (this.container instanceof $) {
  556. containerOffset = this.container.offset();
  557. } else {
  558. containerOffset = $(this.container).offset();
  559. }
  560. if (this.component) {
  561. offset = this.component.offset();
  562. left = offset.left;
  563. if (this.pickerPosition == 'bottom-left' || this.pickerPosition == 'top-left') {
  564. left += this.component.outerWidth() - this.picker.outerWidth();
  565. }
  566. } else {
  567. offset = this.element.offset();
  568. left = offset.left;
  569. if (this.pickerPosition == 'bottom-left' || this.pickerPosition == 'top-left') {
  570. left += this.element.outerWidth() - this.picker.outerWidth();
  571. }
  572. }
  573. var bodyWidth = document.body.clientWidth || window.innerWidth;
  574. if (left + 220 > bodyWidth) {
  575. left = bodyWidth - 220;
  576. }
  577. if (this.pickerPosition == 'top-left' || this.pickerPosition == 'top-right') {
  578. top = offset.top - this.picker.outerHeight();
  579. } else {
  580. top = offset.top + this.height;
  581. }
  582. top = top - containerOffset.top;
  583. left = left - containerOffset.left;
  584. this.picker.css({
  585. top: top,
  586. left: left,
  587. zIndex: this.zIndex
  588. });
  589. },
  590. update: function () {
  591. var date, fromArgs = false;
  592. if (arguments && arguments.length && (typeof arguments[0] === 'string' || arguments[0] instanceof Date)) {
  593. date = arguments[0];
  594. fromArgs = true;
  595. } else {
  596. date = (this.isInput ? this.element.val() : this.element.find('input').val()) || this.element.data('date') || this.initialDate;
  597. if (typeof date == 'string' || date instanceof String) {
  598. date = date.replace(/^\s+|\s+$/g,'');
  599. }
  600. }
  601. if (!date) {
  602. date = new Date();
  603. fromArgs = false;
  604. }
  605. this.date = DPGlobal.parseDate(date, this.format, this.language, this.formatType, this.timezone);
  606. if (fromArgs) this.setValue();
  607. if (this.date < this.startDate) {
  608. this.viewDate = new Date(this.startDate);
  609. } else if (this.date > this.endDate) {
  610. this.viewDate = new Date(this.endDate);
  611. } else {
  612. this.viewDate = new Date(this.date);
  613. }
  614. this.fill();
  615. },
  616. fillDow: function () {
  617. var dowCnt = this.weekStart,
  618. html = '<tr>';
  619. while (dowCnt < this.weekStart + 7) {
  620. html += '<th class="dow">' + dates[this.language].daysMin[(dowCnt++) % 7] + '</th>';
  621. }
  622. html += '</tr>';
  623. this.picker.find('.datetimepicker-days thead').append(html);
  624. },
  625. fillMonths: function () {
  626. var html = '',
  627. i = 0;
  628. while (i < 12) {
  629. var classes = this.onRenderMonth(i + 1)
  630. html += '<span class="' + classes.join(' ') + '">' + dates[this.language].monthsShort[i++] + '</span>';
  631. }
  632. this.picker.find('.datetimepicker-months td').html(html);
  633. },
  634. fill: function () {
  635. if (this.date == null || this.viewDate == null) {
  636. return;
  637. }
  638. var d = new Date(this.viewDate),
  639. year = d.getUTCFullYear(),
  640. month = d.getUTCMonth(),
  641. dayMonth = d.getUTCDate(),
  642. hours = d.getUTCHours(),
  643. minutes = d.getUTCMinutes(),
  644. startYear = this.startDate !== -Infinity ? this.startDate.getUTCFullYear() : -Infinity,
  645. startMonth = this.startDate !== -Infinity ? this.startDate.getUTCMonth() : -Infinity,
  646. endYear = this.endDate !== Infinity ? this.endDate.getUTCFullYear() : Infinity,
  647. endMonth = this.endDate !== Infinity ? this.endDate.getUTCMonth() + 1 : Infinity,
  648. currentDate = (new UTCDate(this.date.getUTCFullYear(), this.date.getUTCMonth(), this.date.getUTCDate())).valueOf(),
  649. today = new Date();
  650. this.setTitle('.datetimepicker-days', dates[this.language].months[month] + ' ' + year)
  651. if (this.formatViewType == 'time') {
  652. var formatted = this.getFormattedDate();
  653. this.setTitle('.datetimepicker-hours', formatted);
  654. this.setTitle('.datetimepicker-minutes', formatted);
  655. } else {
  656. this.setTitle('.datetimepicker-hours', dayMonth + ' ' + dates[this.language].months[month] + ' ' + year);
  657. this.setTitle('.datetimepicker-minutes', dayMonth + ' ' + dates[this.language].months[month] + ' ' + year);
  658. }
  659. this.picker.find('tfoot th.today')
  660. .text(dates[this.language].today || dates['en'].today)
  661. .toggle(this.todayBtn !== false);
  662. this.picker.find('tfoot th.clear')
  663. .text(dates[this.language].clear || dates['en'].clear)
  664. .toggle(this.clearBtn !== false);
  665. this.updateNavArrows();
  666. this.fillMonths();
  667. var prevMonth = UTCDate(year, month - 1, 28, 0, 0, 0, 0),
  668. day = DPGlobal.getDaysInMonth(prevMonth.getUTCFullYear(), prevMonth.getUTCMonth());
  669. prevMonth.setUTCDate(day);
  670. prevMonth.setUTCDate(day - (prevMonth.getUTCDay() - this.weekStart + 7) % 7);
  671. var nextMonth = new Date(prevMonth);
  672. nextMonth.setUTCDate(nextMonth.getUTCDate() + 42);
  673. nextMonth = nextMonth.valueOf();
  674. var html = [];
  675. var classes;
  676. while (prevMonth.valueOf() < nextMonth) {
  677. if (prevMonth.getUTCDay() == this.weekStart) {
  678. html.push('<tr>');
  679. }
  680. classes = this.onRenderDay(prevMonth);
  681. if (prevMonth.getUTCFullYear() < year || (prevMonth.getUTCFullYear() == year && prevMonth.getUTCMonth() < month)) {
  682. classes.push('old');
  683. } else if (prevMonth.getUTCFullYear() > year || (prevMonth.getUTCFullYear() == year && prevMonth.getUTCMonth() > month)) {
  684. classes.push('new');
  685. }
  686. // Compare internal UTC date with local today, not UTC today
  687. if (this.todayHighlight &&
  688. prevMonth.getUTCFullYear() == today.getFullYear() &&
  689. prevMonth.getUTCMonth() == today.getMonth() &&
  690. prevMonth.getUTCDate() == today.getDate()) {
  691. classes.push('today');
  692. }
  693. if (prevMonth.valueOf() == currentDate) {
  694. classes.push('active');
  695. }
  696. if ((prevMonth.valueOf() + 86400000) <= this.startDate || prevMonth.valueOf() > this.endDate ||
  697. $.inArray(prevMonth.getUTCDay(), this.daysOfWeekDisabled) !== -1 ||
  698. $.inArray(prevMonth.toDateString(), this.datesDisabled) !== -1) {
  699. classes.push('disabled');
  700. }
  701. html.push('<td class="' + classes.join(' ') + '">' + prevMonth.getUTCDate() + '</td>');
  702. if (prevMonth.getUTCDay() == this.weekEnd) {
  703. html.push('</tr>');
  704. }
  705. prevMonth.setUTCDate(prevMonth.getUTCDate() + 1);
  706. }
  707. this.picker.find('.datetimepicker-days tbody').empty().append(html.join(''));
  708. html = [];
  709. var txt = '', meridian = '', meridianOld = '';
  710. var hoursDisabled = this.hoursDisabled || [];
  711. for (var i = 0; i < 24; i++) {
  712. classes = this.onRenderHour(i + 1);
  713. if (hoursDisabled.indexOf(i) !== -1) {
  714. classes.push('disabled');
  715. }
  716. var actual = UTCDate(year, month, dayMonth, i);
  717. // We want the previous hour for the startDate
  718. if ((actual.valueOf() + 3600000) <= this.startDate || actual.valueOf() > this.endDate) {
  719. classes.push('disabled');
  720. } else if (hours == i) {
  721. classes.push('active');
  722. }
  723. if (this.showMeridian && dates[this.language].meridiem.length == 2) {
  724. meridian = (i < 12 ? dates[this.language].meridiem[0] : dates[this.language].meridiem[1]);
  725. if (meridian != meridianOld) {
  726. if (meridianOld != '') {
  727. html.push('</fieldset>');
  728. }
  729. html.push('<fieldset class="hour"><legend>' + meridian.toUpperCase() + '</legend>');
  730. }
  731. meridianOld = meridian;
  732. txt = (i % 12 ? i % 12 : 12);
  733. if (i < 12) {
  734. classes.push('hour_am');
  735. } else {
  736. classes.push('hour_pm');
  737. }
  738. html.push('<span class="' + classes.join(' ') + '">' + txt + '</span>');
  739. if (i == 23) {
  740. html.push('</fieldset>');
  741. }
  742. } else {
  743. txt = i + ':00';
  744. html.push('<span class="' + classes.join(' ') + '">' + txt + '</span>');
  745. }
  746. }
  747. this.picker.find('.datetimepicker-hours td').html(html.join(''));
  748. html = [];
  749. txt = '', meridian = '', meridianOld = '';
  750. var minutesDisabled = this.minutesDisabled || [];
  751. for (var i = 0; i < 60; i += this.minuteStep) {
  752. if (minutesDisabled.indexOf(i) !== -1) continue;
  753. var actual = UTCDate(year, month, dayMonth, hours, i, 0);
  754. classes = this.onRenderMinute(i + this.minuteStep);
  755. if (actual.valueOf() < this.startDate || actual.valueOf() > this.endDate) {
  756. classes.push('disabled');
  757. } else if (Math.floor(minutes / this.minuteStep) == Math.floor(i / this.minuteStep)) {
  758. classes.push('active');
  759. }
  760. if (this.showMeridian && dates[this.language].meridiem.length == 2) {
  761. meridian = (hours < 12 ? dates[this.language].meridiem[0] : dates[this.language].meridiem[1]);
  762. if (meridian != meridianOld) {
  763. if (meridianOld != '') {
  764. html.push('</fieldset>');
  765. }
  766. html.push('<fieldset class="minute"><legend>' + meridian.toUpperCase() + '</legend>');
  767. }
  768. meridianOld = meridian;
  769. txt = (hours % 12 ? hours % 12 : 12);
  770. html.push('<span class="' + classes.join(' ') + '">' + txt + ':' + (i < 10 ? '0' + i : i) + '</span>');
  771. if (i == 59) {
  772. html.push('</fieldset>');
  773. }
  774. } else {
  775. txt = i + ':00';
  776. html.push('<span class="' + classes.join(' ') + '">' + hours + ':' + (i < 10 ? '0' + i : i) + '</span>');
  777. }
  778. }
  779. this.picker.find('.datetimepicker-minutes td').html(html.join(''));
  780. var currentYear = this.date.getUTCFullYear();
  781. var months = this.setTitle('.datetimepicker-months', year)
  782. .end()
  783. .find('.month').removeClass('active');
  784. if (currentYear == year) {
  785. // getUTCMonths() returns 0 based, and we need to select the next one
  786. // To cater bootstrap 2 we don't need to select the next one
  787. months.eq(this.date.getUTCMonth()).addClass('active');
  788. }
  789. if (year < startYear || year > endYear) {
  790. months.addClass('disabled');
  791. }
  792. if (year == startYear) {
  793. months.slice(0, startMonth).addClass('disabled');
  794. }
  795. if (year == endYear) {
  796. months.slice(endMonth).addClass('disabled');
  797. }
  798. html = '';
  799. year = parseInt(year / 10, 10) * 10;
  800. var yearCont = this.setTitle('.datetimepicker-years', year + '-' + (year + 9))
  801. .end()
  802. .find('td');
  803. year -= 1;
  804. for (var i = -1; i < 11; i++) {
  805. classes = this.onRenderYear(year);
  806. if (currentYear == year) {
  807. classes.push('active');
  808. }
  809. if (year < startYear || year > endYear) {
  810. classes.push('disabled');
  811. }
  812. if (i == -1 || i == 10) {
  813. classes.push(old);
  814. }
  815. html += '<span class="' + classes.join(' ') + '">' + year + '</span>';
  816. year += 1;
  817. }
  818. yearCont.html(html);
  819. this.place();
  820. },
  821. updateNavArrows: function () {
  822. var d = new Date(this.viewDate),
  823. year = d.getUTCFullYear(),
  824. month = d.getUTCMonth(),
  825. day = d.getUTCDate(),
  826. hour = d.getUTCHours();
  827. switch (this.viewMode) {
  828. case 0:
  829. if (this.startDate !== -Infinity && year <= this.startDate.getUTCFullYear()
  830. && month <= this.startDate.getUTCMonth()
  831. && day <= this.startDate.getUTCDate()
  832. && hour <= this.startDate.getUTCHours()) {
  833. this.picker.find('.prev').css({visibility: 'hidden'});
  834. } else {
  835. this.picker.find('.prev').css({visibility: 'visible'});
  836. }
  837. if (this.endDate !== Infinity && year >= this.endDate.getUTCFullYear()
  838. && month >= this.endDate.getUTCMonth()
  839. && day >= this.endDate.getUTCDate()
  840. && hour >= this.endDate.getUTCHours()) {
  841. this.picker.find('.next').css({visibility: 'hidden'});
  842. } else {
  843. this.picker.find('.next').css({visibility: 'visible'});
  844. }
  845. break;
  846. case 1:
  847. if (this.startDate !== -Infinity && year <= this.startDate.getUTCFullYear()
  848. && month <= this.startDate.getUTCMonth()
  849. && day <= this.startDate.getUTCDate()) {
  850. this.picker.find('.prev').css({visibility: 'hidden'});
  851. } else {
  852. this.picker.find('.prev').css({visibility: 'visible'});
  853. }
  854. if (this.endDate !== Infinity && year >= this.endDate.getUTCFullYear()
  855. && month >= this.endDate.getUTCMonth()
  856. && day >= this.endDate.getUTCDate()) {
  857. this.picker.find('.next').css({visibility: 'hidden'});
  858. } else {
  859. this.picker.find('.next').css({visibility: 'visible'});
  860. }
  861. break;
  862. case 2:
  863. if (this.startDate !== -Infinity && year <= this.startDate.getUTCFullYear()
  864. && month <= this.startDate.getUTCMonth()) {
  865. this.picker.find('.prev').css({visibility: 'hidden'});
  866. } else {
  867. this.picker.find('.prev').css({visibility: 'visible'});
  868. }
  869. if (this.endDate !== Infinity && year >= this.endDate.getUTCFullYear()
  870. && month >= this.endDate.getUTCMonth()) {
  871. this.picker.find('.next').css({visibility: 'hidden'});
  872. } else {
  873. this.picker.find('.next').css({visibility: 'visible'});
  874. }
  875. break;
  876. case 3:
  877. case 4:
  878. if (this.startDate !== -Infinity && year <= this.startDate.getUTCFullYear()) {
  879. this.picker.find('.prev').css({visibility: 'hidden'});
  880. } else {
  881. this.picker.find('.prev').css({visibility: 'visible'});
  882. }
  883. if (this.endDate !== Infinity && year >= this.endDate.getUTCFullYear()) {
  884. this.picker.find('.next').css({visibility: 'hidden'});
  885. } else {
  886. this.picker.find('.next').css({visibility: 'visible'});
  887. }
  888. break;
  889. }
  890. },
  891. mousewheel: function (e) {
  892. e.preventDefault();
  893. e.stopPropagation();
  894. if (this.wheelPause) {
  895. return;
  896. }
  897. this.wheelPause = true;
  898. var originalEvent = e.originalEvent;
  899. var delta = originalEvent.wheelDelta;
  900. var mode = delta > 0 ? 1 : (delta === 0) ? 0 : -1;
  901. if (this.wheelViewModeNavigationInverseDirection) {
  902. mode = -mode;
  903. }
  904. this.showMode(mode);
  905. setTimeout($.proxy(function () {
  906. this.wheelPause = false
  907. }, this), this.wheelViewModeNavigationDelay);
  908. },
  909. click: function (e) {
  910. e.stopPropagation();
  911. e.preventDefault();
  912. var target = $(e.target).closest('span, td, th, legend');
  913. if (target.is('.' + this.icontype)) {
  914. target = $(target).parent().closest('span, td, th, legend');
  915. }
  916. if (target.length == 1) {
  917. if (target.is('.disabled')) {
  918. this.element.trigger({
  919. type: 'outOfRange',
  920. date: this.viewDate,
  921. startDate: this.startDate,
  922. endDate: this.endDate
  923. });
  924. return;
  925. }
  926. switch (target[0].nodeName.toLowerCase()) {
  927. case 'th':
  928. switch (target[0].className) {
  929. case 'switch':
  930. this.showMode(1);
  931. break;
  932. case 'prev':
  933. case 'next':
  934. var dir = DPGlobal.modes[this.viewMode].navStep * (target[0].className == 'prev' ? -1 : 1);
  935. switch (this.viewMode) {
  936. case 0:
  937. this.viewDate = this.moveHour(this.viewDate, dir);
  938. break;
  939. case 1:
  940. this.viewDate = this.moveDate(this.viewDate, dir);
  941. break;
  942. case 2:
  943. this.viewDate = this.moveMonth(this.viewDate, dir);
  944. break;
  945. case 3:
  946. case 4:
  947. this.viewDate = this.moveYear(this.viewDate, dir);
  948. break;
  949. }
  950. this.fill();
  951. this.element.trigger({
  952. type: target[0].className + ':' + this.convertViewModeText(this.viewMode),
  953. date: this.viewDate,
  954. startDate: this.startDate,
  955. endDate: this.endDate
  956. });
  957. break;
  958. case 'clear':
  959. this.reset();
  960. if (this.autoclose) {
  961. this.hide();
  962. }
  963. break;
  964. case 'today':
  965. var date = new Date();
  966. date = UTCDate(date.getFullYear(), date.getMonth(), date.getDate(), date.getHours(), date.getMinutes(), date.getSeconds(), 0);
  967. // Respect startDate and endDate.
  968. if (date < this.startDate) date = this.startDate;
  969. else if (date > this.endDate) date = this.endDate;
  970. this.viewMode = this.startViewMode;
  971. this.showMode(0);
  972. this._setDate(date);
  973. this.fill();
  974. if (this.autoclose) {
  975. this.hide();
  976. }
  977. break;
  978. }
  979. break;
  980. case 'span':
  981. if (!target.is('.disabled')) {
  982. var year = this.viewDate.getUTCFullYear(),
  983. month = this.viewDate.getUTCMonth(),
  984. day = this.viewDate.getUTCDate(),
  985. hours = this.viewDate.getUTCHours(),
  986. minutes = this.viewDate.getUTCMinutes(),
  987. seconds = this.viewDate.getUTCSeconds();
  988. if (target.is('.month')) {
  989. this.viewDate.setUTCDate(1);
  990. month = target.parent().find('span').index(target);
  991. day = this.viewDate.getUTCDate();
  992. this.viewDate.setUTCMonth(month);
  993. this.element.trigger({
  994. type: 'changeMonth',
  995. date: this.viewDate
  996. });
  997. if (this.viewSelect >= 3) {
  998. this._setDate(UTCDate(year, month, day, hours, minutes, seconds, 0));
  999. }
  1000. } else if (target.is('.year')) {
  1001. this.viewDate.setUTCDate(1);
  1002. year = parseInt(target.text(), 10) || 0;
  1003. this.viewDate.setUTCFullYear(year);
  1004. this.element.trigger({
  1005. type: 'changeYear',
  1006. date: this.viewDate
  1007. });
  1008. if (this.viewSelect >= 4) {
  1009. this._setDate(UTCDate(year, month, day, hours, minutes, seconds, 0));
  1010. }
  1011. } else if (target.is('.hour')) {
  1012. hours = parseInt(target.text(), 10) || 0;
  1013. if (target.hasClass('hour_am') || target.hasClass('hour_pm')) {
  1014. if (hours == 12 && target.hasClass('hour_am')) {
  1015. hours = 0;
  1016. } else if (hours != 12 && target.hasClass('hour_pm')) {
  1017. hours += 12;
  1018. }
  1019. }
  1020. this.viewDate.setUTCHours(hours);
  1021. this.element.trigger({
  1022. type: 'changeHour',
  1023. date: this.viewDate
  1024. });
  1025. if (this.viewSelect >= 1) {
  1026. this._setDate(UTCDate(year, month, day, hours, minutes, seconds, 0));
  1027. }
  1028. } else if (target.is('.minute')) {
  1029. minutes = parseInt(target.text().substr(target.text().indexOf(':') + 1), 10) || 0;
  1030. this.viewDate.setUTCMinutes(minutes);
  1031. this.element.trigger({
  1032. type: 'changeMinute',
  1033. date: this.viewDate
  1034. });
  1035. if (this.viewSelect >= 0) {
  1036. this._setDate(UTCDate(year, month, day, hours, minutes, seconds, 0));
  1037. }
  1038. }
  1039. if (this.viewMode != 0) {
  1040. var oldViewMode = this.viewMode;
  1041. this.showMode(-1);
  1042. this.fill();
  1043. if (oldViewMode == this.viewMode && this.autoclose) {
  1044. this.hide();
  1045. }
  1046. } else {
  1047. this.fill();
  1048. if (this.autoclose) {
  1049. this.hide();
  1050. }
  1051. }
  1052. }
  1053. break;
  1054. case 'td':
  1055. if (target.is('.day') && !target.is('.disabled')) {
  1056. var day = parseInt(target.text(), 10) || 1;
  1057. var year = this.viewDate.getUTCFullYear(),
  1058. month = this.viewDate.getUTCMonth(),
  1059. hours = this.viewDate.getUTCHours(),
  1060. minutes = this.viewDate.getUTCMinutes(),
  1061. seconds = this.viewDate.getUTCSeconds();
  1062. if (target.is('.old')) {
  1063. if (month === 0) {
  1064. month = 11;
  1065. year -= 1;
  1066. } else {
  1067. month -= 1;
  1068. }
  1069. } else if (target.is('.new')) {
  1070. if (month == 11) {
  1071. month = 0;
  1072. year += 1;
  1073. } else {
  1074. month += 1;
  1075. }
  1076. }
  1077. this.viewDate.setUTCFullYear(year);
  1078. this.viewDate.setUTCMonth(month, day);
  1079. this.element.trigger({
  1080. type: 'changeDay',
  1081. date: this.viewDate
  1082. });
  1083. if (this.viewSelect >= 2) {
  1084. this._setDate(UTCDate(year, month, day, hours, minutes, seconds, 0));
  1085. }
  1086. }
  1087. var oldViewMode = this.viewMode;
  1088. this.showMode(-1);
  1089. this.fill();
  1090. if (oldViewMode == this.viewMode && this.autoclose) {
  1091. this.hide();
  1092. }
  1093. break;
  1094. }
  1095. }
  1096. },
  1097. _setDate: function (date, which) {
  1098. if (!which || which == 'date')
  1099. this.date = date;
  1100. if (!which || which == 'view')
  1101. this.viewDate = date;
  1102. this.fill();
  1103. this.setValue();
  1104. var element;
  1105. if (this.isInput) {
  1106. element = this.element;
  1107. } else if (this.component) {
  1108. element = this.element.find('input');
  1109. }
  1110. if (element) {
  1111. element.change();
  1112. if (this.autoclose && (!which || which == 'date')) {
  1113. //this.hide();
  1114. }
  1115. }
  1116. this.element.trigger({
  1117. type: 'changeDate',
  1118. date: this.getDate()
  1119. });
  1120. if(date == null)
  1121. this.date = this.viewDate;
  1122. },
  1123. moveMinute: function (date, dir) {
  1124. if (!dir) return date;
  1125. var new_date = new Date(date.valueOf());
  1126. //dir = dir > 0 ? 1 : -1;
  1127. new_date.setUTCMinutes(new_date.getUTCMinutes() + (dir * this.minuteStep));
  1128. return new_date;
  1129. },
  1130. moveHour: function (date, dir) {
  1131. if (!dir) return date;
  1132. var new_date = new Date(date.valueOf());
  1133. //dir = dir > 0 ? 1 : -1;
  1134. new_date.setUTCHours(new_date.getUTCHours() + dir);
  1135. return new_date;
  1136. },
  1137. moveDate: function (date, dir) {
  1138. if (!dir) return date;
  1139. var new_date = new Date(date.valueOf());
  1140. //dir = dir > 0 ? 1 : -1;
  1141. new_date.setUTCDate(new_date.getUTCDate() + dir);
  1142. return new_date;
  1143. },
  1144. moveMonth: function (date, dir) {
  1145. if (!dir) return date;
  1146. var new_date = new Date(date.valueOf()),
  1147. day = new_date.getUTCDate(),
  1148. month = new_date.getUTCMonth(),
  1149. mag = Math.abs(dir),
  1150. new_month, test;
  1151. dir = dir > 0 ? 1 : -1;
  1152. if (mag == 1) {
  1153. test = dir == -1
  1154. // If going back one month, make sure month is not current month
  1155. // (eg, Mar 31 -> Feb 31 == Feb 28, not Mar 02)
  1156. ? function () {
  1157. return new_date.getUTCMonth() == month;
  1158. }
  1159. // If going forward one month, make sure month is as expected
  1160. // (eg, Jan 31 -> Feb 31 == Feb 28, not Mar 02)
  1161. : function () {
  1162. return new_date.getUTCMonth() != new_month;
  1163. };
  1164. new_month = month + dir;
  1165. new_date.setUTCMonth(new_month);
  1166. // Dec -> Jan (12) or Jan -> Dec (-1) -- limit expected date to 0-11
  1167. if (new_month < 0 || new_month > 11)
  1168. new_month = (new_month + 12) % 12;
  1169. } else {
  1170. // For magnitudes >1, move one month at a time...
  1171. for (var i = 0; i < mag; i++)
  1172. // ...which might decrease the day (eg, Jan 31 to Feb 28, etc)...
  1173. new_date = this.moveMonth(new_date, dir);
  1174. // ...then reset the day, keeping it in the new month
  1175. new_month = new_date.getUTCMonth();
  1176. new_date.setUTCDate(day);
  1177. test = function () {
  1178. return new_month != new_date.getUTCMonth();
  1179. };
  1180. }
  1181. // Common date-resetting loop -- if date is beyond end of month, make it
  1182. // end of month
  1183. while (test()) {
  1184. new_date.setUTCDate(--day);
  1185. new_date.setUTCMonth(new_month);
  1186. }
  1187. return new_date;
  1188. },
  1189. moveYear: function (date, dir) {
  1190. return this.moveMonth(date, dir * 12);
  1191. },
  1192. dateWithinRange: function (date) {
  1193. return date >= this.startDate && date <= this.endDate;
  1194. },
  1195. keydown: function (e) {
  1196. if (this.picker.is(':not(:visible)')) {
  1197. if (e.keyCode == 27) // allow escape to hide and re-show picker
  1198. this.show();
  1199. return;
  1200. }
  1201. var dateChanged = false,
  1202. dir, day, month,
  1203. newDate, newViewDate;
  1204. switch (e.keyCode) {
  1205. case 27: // escape
  1206. this.hide();
  1207. e.preventDefault();
  1208. break;
  1209. case 37: // left
  1210. case 39: // right
  1211. if (!this.keyboardNavigation) break;
  1212. dir = e.keyCode == 37 ? -1 : 1;
  1213. viewMode = this.viewMode;
  1214. if (e.ctrlKey) {
  1215. viewMode += 2;
  1216. } else if (e.shiftKey) {
  1217. viewMode += 1;
  1218. }
  1219. if (viewMode == 4) {
  1220. newDate = this.moveYear(this.date, dir);
  1221. newViewDate = this.moveYear(this.viewDate, dir);
  1222. } else if (viewMode == 3) {
  1223. newDate = this.moveMonth(this.date, dir);
  1224. newViewDate = this.moveMonth(this.viewDate, dir);
  1225. } else if (viewMode == 2) {
  1226. newDate = this.moveDate(this.date, dir);
  1227. newViewDate = this.moveDate(this.viewDate, dir);
  1228. } else if (viewMode == 1) {
  1229. newDate = this.moveHour(this.date, dir);
  1230. newViewDate = this.moveHour(this.viewDate, dir);
  1231. } else if (viewMode == 0) {
  1232. newDate = this.moveMinute(this.date, dir);
  1233. newViewDate = this.moveMinute(this.viewDate, dir);
  1234. }
  1235. if (this.dateWithinRange(newDate)) {
  1236. this.date = newDate;
  1237. this.viewDate = newViewDate;
  1238. this.setValue();
  1239. this.update();
  1240. e.preventDefault();
  1241. dateChanged = true;
  1242. }
  1243. break;
  1244. case 38: // up
  1245. case 40: // down
  1246. if (!this.keyboardNavigation) break;
  1247. dir = e.keyCode == 38 ? -1 : 1;
  1248. viewMode = this.viewMode;
  1249. if (e.ctrlKey) {
  1250. viewMode += 2;
  1251. } else if (e.shiftKey) {
  1252. viewMode += 1;
  1253. }
  1254. if (viewMode == 4) {
  1255. newDate = this.moveYear(this.date, dir);
  1256. newViewDate = this.moveYear(this.viewDate, dir);
  1257. } else if (viewMode == 3) {
  1258. newDate = this.moveMonth(this.date, dir);
  1259. newViewDate = this.moveMonth(this.viewDate, dir);
  1260. } else if (viewMode == 2) {
  1261. newDate = this.moveDate(this.date, dir * 7);
  1262. newViewDate = this.moveDate(this.viewDate, dir * 7);
  1263. } else if (viewMode == 1) {
  1264. if (this.showMeridian) {
  1265. newDate = this.moveHour(this.date, dir * 6);
  1266. newViewDate = this.moveHour(this.viewDate, dir * 6);
  1267. } else {
  1268. newDate = this.moveHour(this.date, dir * 4);
  1269. newViewDate = this.moveHour(this.viewDate, dir * 4);
  1270. }
  1271. } else if (viewMode == 0) {
  1272. newDate = this.moveMinute(this.date, dir * 4);
  1273. newViewDate = this.moveMinute(this.viewDate, dir * 4);
  1274. }
  1275. if (this.dateWithinRange(newDate)) {
  1276. this.date = newDate;
  1277. this.viewDate = newViewDate;
  1278. this.setValue();
  1279. this.update();
  1280. e.preventDefault();
  1281. dateChanged = true;
  1282. }
  1283. break;
  1284. case 13: // enter
  1285. if (this.viewMode != 0) {
  1286. var oldViewMode = this.viewMode;
  1287. this.showMode(-1);
  1288. this.fill();
  1289. if (oldViewMode == this.viewMode && this.autoclose) {
  1290. this.hide();
  1291. }
  1292. } else {
  1293. this.fill();
  1294. if (this.autoclose) {
  1295. this.hide();
  1296. }
  1297. }
  1298. e.preventDefault();
  1299. break;
  1300. case 9: // tab
  1301. this.hide();
  1302. break;
  1303. }
  1304. if (dateChanged) {
  1305. var element;
  1306. if (this.isInput) {
  1307. element = this.element;
  1308. } else if (this.component) {
  1309. element = this.element.find('input');
  1310. }
  1311. if (element) {
  1312. element.change();
  1313. }
  1314. this.element.trigger({
  1315. type: 'changeDate',
  1316. date: this.getDate()
  1317. });
  1318. }
  1319. },
  1320. showMode: function (dir) {
  1321. if (dir) {
  1322. var newViewMode = Math.max(0, Math.min(DPGlobal.modes.length - 1, this.viewMode + dir));
  1323. if (newViewMode >= this.minView && newViewMode <= this.maxView) {
  1324. this.element.trigger({
  1325. type: 'changeMode',
  1326. date: this.viewDate,
  1327. oldViewMode: this.viewMode,
  1328. newViewMode: newViewMode
  1329. });
  1330. this.viewMode = newViewMode;
  1331. }
  1332. }
  1333. /*
  1334. vitalets: fixing bug of very special conditions:
  1335. jquery 1.7.1 + webkit + show inline datetimepicker in bootstrap popover.
  1336. Method show() does not set display css correctly and datetimepicker is not shown.
  1337. Changed to .css('display', 'block') solve the problem.
  1338. See https://github.com/vitalets/x-editable/issues/37
  1339. In jquery 1.7.2+ everything works fine.
  1340. */
  1341. //this.picker.find('>div').hide().filter('.datetimepicker-'+DPGlobal.modes[this.viewMode].clsName).show();
  1342. this.picker.find('>div').hide().filter('.datetimepicker-' + DPGlobal.modes[this.viewMode].clsName).css('display', 'block');
  1343. this.updateNavArrows();
  1344. },
  1345. reset: function (e) {
  1346. this._setDate(null, 'date');
  1347. },
  1348. convertViewModeText: function (viewMode) {
  1349. switch (viewMode) {
  1350. case 4:
  1351. return 'decade';
  1352. case 3:
  1353. return 'year';
  1354. case 2:
  1355. return 'month';
  1356. case 1:
  1357. return 'day';
  1358. case 0:
  1359. return 'hour';
  1360. }
  1361. }
  1362. };
  1363. var old = $.fn.datetimepicker;
  1364. $.fn.datetimepicker = function (option) {
  1365. var args = Array.apply(null, arguments);
  1366. args.shift();
  1367. var internal_return;
  1368. this.each(function () {
  1369. var $this = $(this),
  1370. data = $this.data('datetimepicker'),
  1371. options = typeof option == 'object' && option;
  1372. if (!data) {
  1373. $this.data('datetimepicker', (data = new Datetimepicker(this, $.extend({}, $.fn.datetimepicker.defaults, options))));
  1374. }
  1375. if (typeof option == 'string' && typeof data[option] == 'function') {
  1376. internal_return = data[option].apply(data, args);
  1377. if (internal_return !== undefined) {
  1378. return false;
  1379. }
  1380. }
  1381. });
  1382. if (internal_return !== undefined)
  1383. return internal_return;
  1384. else
  1385. return this;
  1386. };
  1387. $.fn.datetimepicker.defaults = {
  1388. };
  1389. $.fn.datetimepicker.Constructor = Datetimepicker;
  1390. var dates = $.fn.datetimepicker.dates = {
  1391. en: {
  1392. days: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday'],
  1393. daysShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
  1394. daysMin: ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa', 'Su'],
  1395. months: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],
  1396. monthsShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
  1397. meridiem: ['am', 'pm'],
  1398. suffix: ['st', 'nd', 'rd', 'th'],
  1399. today: 'Today',
  1400. clear: 'Clear'
  1401. }
  1402. };
  1403. var DPGlobal = {
  1404. modes: [
  1405. {
  1406. clsName: 'minutes',
  1407. navFnc: 'Hours',
  1408. navStep: 1
  1409. },
  1410. {
  1411. clsName: 'hours',
  1412. navFnc: 'Date',
  1413. navStep: 1
  1414. },
  1415. {
  1416. clsName: 'days',
  1417. navFnc: 'Month',
  1418. navStep: 1
  1419. },
  1420. {
  1421. clsName: 'months',
  1422. navFnc: 'FullYear',
  1423. navStep: 1
  1424. },
  1425. {
  1426. clsName: 'years',
  1427. navFnc: 'FullYear',
  1428. navStep: 10
  1429. }
  1430. ],
  1431. isLeapYear: function (year) {
  1432. return (((year % 4 === 0) && (year % 100 !== 0)) || (year % 400 === 0))
  1433. },
  1434. getDaysInMonth: function (year, month) {
  1435. return [31, (DPGlobal.isLeapYear(year) ? 29 : 28), 31, 30, 31, 30, 31, 31, 30, 31, 30, 31][month]
  1436. },
  1437. getDefaultFormat: function (type, field) {
  1438. if (type == 'standard') {
  1439. if (field == 'input')
  1440. return 'yyyy-mm-dd hh:ii';
  1441. else
  1442. return 'yyyy-mm-dd hh:ii:ss';
  1443. } else if (type == 'php') {
  1444. if (field == 'input')
  1445. return 'Y-m-d H:i';
  1446. else
  1447. return 'Y-m-d H:i:s';
  1448. } else {
  1449. throw new Error('Invalid format type.');
  1450. }
  1451. },
  1452. validParts: function (type) {
  1453. if (type == 'standard') {
  1454. return /t|hh?|HH?|p|P|z|Z|ii?|ss?|dd?|DD?|mm?|MM?|yy(?:yy)?/g;
  1455. } else if (type == 'php') {
  1456. return /[dDjlNwzFmMnStyYaABgGhHis]/g;
  1457. } else {
  1458. throw new Error('Invalid format type.');
  1459. }
  1460. },
  1461. nonpunctuation: /[^ -\/:-@\[-`{-~\t\n\rTZ]+/g,
  1462. parseFormat: function (format, type) {
  1463. // IE treats \0 as a string end in inputs (truncating the value),
  1464. // so it's a bad format delimiter, anyway
  1465. var separators = format.replace(this.validParts(type), '\0').split('\0'),
  1466. parts = format.match(this.validParts(type));
  1467. if (!separators || !separators.length || !parts || parts.length == 0) {
  1468. throw new Error('Invalid date format.');
  1469. }
  1470. return {separators: separators, parts: parts};
  1471. },
  1472. parseDate: function (date, format, language, type, timezone) {
  1473. if (date instanceof Date) {
  1474. var dateUTC = new Date(date.valueOf() - date.getTimezoneOffset() * 60000);
  1475. dateUTC.setMilliseconds(0);
  1476. return dateUTC;
  1477. }
  1478. if (/^\d{4}\-\d{1,2}\-\d{1,2}$/.test(date)) {
  1479. format = this.parseFormat('yyyy-mm-dd', type);
  1480. }
  1481. if (/^\d{4}\-\d{1,2}\-\d{1,2}[T ]\d{1,2}\:\d{1,2}$/.test(date)) {
  1482. format = this.parseFormat('yyyy-mm-dd hh:ii', type);
  1483. }
  1484. if (/^\d{4}\-\d{1,2}\-\d{1,2}[T ]\d{1,2}\:\d{1,2}\:\d{1,2}[Z]{0,1}$/.test(date)) {
  1485. format = this.parseFormat('yyyy-mm-dd hh:ii:ss', type);
  1486. }
  1487. if (/^[-+]\d+[dmwy]([\s,]+[-+]\d+[dmwy])*$/.test(date)) {
  1488. var part_re = /([-+]\d+)([dmwy])/,
  1489. parts = date.match(/([-+]\d+)([dmwy])/g),
  1490. part, dir;
  1491. date = new Date();
  1492. for (var i = 0; i < parts.length; i++) {
  1493. part = part_re.exec(parts[i]);
  1494. dir = parseInt(part[1]);
  1495. switch (part[2]) {
  1496. case 'd':
  1497. date.setUTCDate(date.getUTCDate() + dir);
  1498. break;
  1499. case 'm':
  1500. date = Datetimepicker.prototype.moveMonth.call(Datetimepicker.prototype, date, dir);
  1501. break;
  1502. case 'w':
  1503. date.setUTCDate(date.getUTCDate() + dir * 7);
  1504. break;
  1505. case 'y':
  1506. date = Datetimepicker.prototype.moveYear.call(Datetimepicker.prototype, date, dir);
  1507. break;
  1508. }
  1509. }
  1510. return UTCDate(date.getUTCFullYear(), date.getUTCMonth(), date.getUTCDate(), date.getUTCHours(), date.getUTCMinutes(), date.getUTCSeconds(), 0);
  1511. }
  1512. var parts = date && date.toString().match(this.nonpunctuation) || [],
  1513. date = new Date(0, 0, 0, 0, 0, 0, 0),
  1514. parsed = {},
  1515. setters_order = ['hh', 'h', 'ii', 'i', 'ss', 's', 'yyyy', 'yy', 'M', 'MM', 'm', 'mm', 'D', 'DD', 'd', 'dd', 'H', 'HH', 'p', 'P', 'z', 'Z'],
  1516. setters_map = {
  1517. hh: function (d, v) {
  1518. return d.setUTCHours(v);
  1519. },
  1520. h: function (d, v) {
  1521. return d.setUTCHours(v);
  1522. },
  1523. HH: function (d, v) {
  1524. return d.setUTCHours(v == 12 ? 0 : v);
  1525. },
  1526. H: function (d, v) {
  1527. return d.setUTCHours(v == 12 ? 0 : v);
  1528. },
  1529. ii: function (d, v) {
  1530. return d.setUTCMinutes(v);
  1531. },
  1532. i: function (d, v) {
  1533. return d.setUTCMinutes(v);
  1534. },
  1535. ss: function (d, v) {
  1536. return d.setUTCSeconds(v);
  1537. },
  1538. s: function (d, v) {
  1539. return d.setUTCSeconds(v);
  1540. },
  1541. yyyy: function (d, v) {
  1542. return d.setUTCFullYear(v);
  1543. },
  1544. yy: function (d, v) {
  1545. return d.setUTCFullYear(2000 + v);
  1546. },
  1547. m: function (d, v) {
  1548. v -= 1;
  1549. while (v < 0) v += 12;
  1550. v %= 12;
  1551. d.setUTCMonth(v);
  1552. while (d.getUTCMonth() != v)
  1553. if (isNaN(d.getUTCMonth()))
  1554. return d;
  1555. else
  1556. d.setUTCDate(d.getUTCDate() - 1);
  1557. return d;
  1558. },
  1559. d: function (d, v) {
  1560. return d.setUTCDate(v);
  1561. },
  1562. p: function (d, v) {
  1563. return d.setUTCHours(v == 1 ? d.getUTCHours() + 12 : d.getUTCHours());
  1564. },
  1565. z: function () {
  1566. return timezone
  1567. }
  1568. },
  1569. val, filtered, part;
  1570. setters_map['M'] = setters_map['MM'] = setters_map['mm'] = setters_map['m'];
  1571. setters_map['dd'] = setters_map['d'];
  1572. setters_map['P'] = setters_map['p'];
  1573. setters_map['Z'] = setters_map['z'];
  1574. date = UTCDate(date.getFullYear(), date.getMonth(), date.getDate(), date.getHours(), date.getMinutes(), date.getSeconds());
  1575. if (parts.length == format.parts.length) {
  1576. for (var i = 0, cnt = format.parts.length; i < cnt; i++) {
  1577. val = parseInt(parts[i], 10);
  1578. part = format.parts[i];
  1579. if (isNaN(val)) {
  1580. switch (part) {
  1581. case 'MM':
  1582. filtered = $(dates[language].months).filter(function () {
  1583. var m = this.slice(0, parts[i].length),
  1584. p = parts[i].slice(0, m.length);
  1585. return m == p;
  1586. });
  1587. val = $.inArray(filtered[0], dates[language].months) + 1;
  1588. break;
  1589. case 'M':
  1590. filtered = $(dates[language].monthsShort).filter(function () {
  1591. var m = this.slice(0, parts[i].length),
  1592. p = parts[i].slice(0, m.length);
  1593. return m.toLowerCase() == p.toLowerCase();
  1594. });
  1595. val = $.inArray(filtered[0], dates[language].monthsShort) + 1;
  1596. break;
  1597. case 'p':
  1598. case 'P':
  1599. val = $.inArray(parts[i].toLowerCase(), dates[language].meridiem);
  1600. break;
  1601. case 'z':
  1602. case 'Z':
  1603. timezone;
  1604. break;
  1605. }
  1606. }
  1607. parsed[part] = val;
  1608. }
  1609. for (var i = 0, s; i < setters_order.length; i++) {
  1610. s = setters_order[i];
  1611. if (s in parsed && !isNaN(parsed[s]))
  1612. setters_map[s](date, parsed[s])
  1613. }
  1614. }
  1615. return date;
  1616. },
  1617. formatDate: function (date, format, language, type, timezone) {
  1618. if (date == null) {
  1619. return '';
  1620. }
  1621. var val;
  1622. if (type == 'standard') {
  1623. val = {
  1624. t: date.getTime(),
  1625. // year
  1626. yy: date.getUTCFullYear().toString().substring(2),
  1627. yyyy: date.getUTCFullYear(),
  1628. // month
  1629. m: date.getUTCMonth() + 1,
  1630. M: dates[language].monthsShort[date.getUTCMonth()],
  1631. MM: dates[language].months[date.getUTCMonth()],
  1632. // day
  1633. d: date.getUTCDate(),
  1634. D: dates[language].daysShort[date.getUTCDay()],
  1635. DD: dates[language].days[date.getUTCDay()],
  1636. p: (dates[language].meridiem.length == 2 ? dates[language].meridiem[date.getUTCHours() < 12 ? 0 : 1] : ''),
  1637. // hour
  1638. h: date.getUTCHours(),
  1639. // minute
  1640. i: date.getUTCMinutes(),
  1641. // second
  1642. s: date.getUTCSeconds(),
  1643. // timezone
  1644. z: timezone
  1645. };
  1646. if (dates[language].meridiem.length == 2) {
  1647. val.H = (val.h % 12 == 0 ? 12 : val.h % 12);
  1648. }
  1649. else {
  1650. val.H = val.h;
  1651. }
  1652. val.HH = (val.H < 10 ? '0' : '') + val.H;
  1653. val.P = val.p.toUpperCase();
  1654. val.Z = val.z;
  1655. val.hh = (val.h < 10 ? '0' : '') + val.h;
  1656. val.ii = (val.i < 10 ? '0' : '') + val.i;
  1657. val.ss = (val.s < 10 ? '0' : '') + val.s;
  1658. val.dd = (val.d < 10 ? '0' : '') + val.d;
  1659. val.mm = (val.m < 10 ? '0' : '') + val.m;
  1660. } else if (type == 'php') {
  1661. // php format
  1662. val = {
  1663. // year
  1664. y: date.getUTCFullYear().toString().substring(2),
  1665. Y: date.getUTCFullYear(),
  1666. // month
  1667. F: dates[language].months[date.getUTCMonth()],
  1668. M: dates[language].monthsShort[date.getUTCMonth()],
  1669. n: date.getUTCMonth() + 1,
  1670. t: DPGlobal.getDaysInMonth(date.getUTCFullYear(), date.getUTCMonth()),
  1671. // day
  1672. j: date.getUTCDate(),
  1673. l: dates[language].days[date.getUTCDay()],
  1674. D: dates[language].daysShort[date.getUTCDay()],
  1675. w: date.getUTCDay(), // 0 -> 6
  1676. N: (date.getUTCDay() == 0 ? 7 : date.getUTCDay()), // 1 -> 7
  1677. S: (date.getUTCDate() % 10 <= dates[language].suffix.length ? dates[language].suffix[date.getUTCDate() % 10 - 1] : ''),
  1678. // hour
  1679. a: (dates[language].meridiem.length == 2 ? dates[language].meridiem[date.getUTCHours() < 12 ? 0 : 1] : ''),
  1680. g: (date.getUTCHours() % 12 == 0 ? 12 : date.getUTCHours() % 12),
  1681. G: date.getUTCHours(),
  1682. // minute
  1683. i: date.getUTCMinutes(),
  1684. // second
  1685. s: date.getUTCSeconds()
  1686. };
  1687. val.m = (val.n < 10 ? '0' : '') + val.n;
  1688. val.d = (val.j < 10 ? '0' : '') + val.j;
  1689. val.A = val.a.toString().toUpperCase();
  1690. val.h = (val.g < 10 ? '0' : '') + val.g;
  1691. val.H = (val.G < 10 ? '0' : '') + val.G;
  1692. val.i = (val.i < 10 ? '0' : '') + val.i;
  1693. val.s = (val.s < 10 ? '0' : '') + val.s;
  1694. } else {
  1695. throw new Error('Invalid format type.');
  1696. }
  1697. var date = [],
  1698. seps = $.extend([], format.separators);
  1699. for (var i = 0, cnt = format.parts.length; i < cnt; i++) {
  1700. if (seps.length) {
  1701. date.push(seps.shift());
  1702. }
  1703. date.push(val[format.parts[i]]);
  1704. }
  1705. if (seps.length) {
  1706. date.push(seps.shift());
  1707. }
  1708. return date.join('');
  1709. },
  1710. convertViewMode: function (viewMode) {
  1711. switch (viewMode) {
  1712. case 4:
  1713. case 'decade':
  1714. viewMode = 4;
  1715. break;
  1716. case 3:
  1717. case 'year':
  1718. viewMode = 3;
  1719. break;
  1720. case 2:
  1721. case 'month':
  1722. viewMode = 2;
  1723. break;
  1724. case 1:
  1725. case 'day':
  1726. viewMode = 1;
  1727. break;
  1728. case 0:
  1729. case 'hour':
  1730. viewMode = 0;
  1731. break;
  1732. }
  1733. return viewMode;
  1734. },
  1735. headTemplate: '<thead>' +
  1736. '<tr>' +
  1737. '<th class="prev"><i class="{iconType} {leftArrow}"/></th>' +
  1738. '<th colspan="5" class="switch"></th>' +
  1739. '<th class="next"><i class="{iconType} {rightArrow}"/></th>' +
  1740. '</tr>' +
  1741. '</thead>',
  1742. headTemplateV3: '<thead>' +
  1743. '<tr>' +
  1744. '<th class="prev"><span class="{iconType} {leftArrow}"></span> </th>' +
  1745. '<th colspan="5" class="switch"></th>' +
  1746. '<th class="next"><span class="{iconType} {rightArrow}"></span> </th>' +
  1747. '</tr>' +
  1748. '</thead>',
  1749. contTemplate: '<tbody><tr><td colspan="7"></td></tr></tbody>',
  1750. footTemplate: '<tfoot>' +
  1751. '<tr><th colspan="7" class="today"></th></tr>' +
  1752. '<tr><th colspan="7" class="clear"></th></tr>' +
  1753. '</tfoot>'
  1754. };
  1755. DPGlobal.template = '<div class="datetimepicker">' +
  1756. '<div class="datetimepicker-minutes">' +
  1757. '<table class=" table-condensed">' +
  1758. DPGlobal.headTemplate +
  1759. DPGlobal.contTemplate +
  1760. DPGlobal.footTemplate +
  1761. '</table>' +
  1762. '</div>' +
  1763. '<div class="datetimepicker-hours">' +
  1764. '<table class=" table-condensed">' +
  1765. DPGlobal.headTemplate +
  1766. DPGlobal.contTemplate +
  1767. DPGlobal.footTemplate +
  1768. '</table>' +
  1769. '</div>' +
  1770. '<div class="datetimepicker-days">' +
  1771. '<table class=" table-condensed">' +
  1772. DPGlobal.headTemplate +
  1773. '<tbody></tbody>' +
  1774. DPGlobal.footTemplate +
  1775. '</table>' +
  1776. '</div>' +
  1777. '<div class="datetimepicker-months">' +
  1778. '<table class="table-condensed">' +
  1779. DPGlobal.headTemplate +
  1780. DPGlobal.contTemplate +
  1781. DPGlobal.footTemplate +
  1782. '</table>' +
  1783. '</div>' +
  1784. '<div class="datetimepicker-years">' +
  1785. '<table class="table-condensed">' +
  1786. DPGlobal.headTemplate +
  1787. DPGlobal.contTemplate +
  1788. DPGlobal.footTemplate +
  1789. '</table>' +
  1790. '</div>' +
  1791. '</div>';
  1792. DPGlobal.templateV3 = '<div class="datetimepicker">' +
  1793. '<div class="datetimepicker-minutes">' +
  1794. '<table class=" table-condensed">' +
  1795. DPGlobal.headTemplateV3 +
  1796. DPGlobal.contTemplate +
  1797. DPGlobal.footTemplate +
  1798. '</table>' +
  1799. '</div>' +
  1800. '<div class="datetimepicker-hours">' +
  1801. '<table class=" table-condensed">' +
  1802. DPGlobal.headTemplateV3 +
  1803. DPGlobal.contTemplate +
  1804. DPGlobal.footTemplate +
  1805. '</table>' +
  1806. '</div>' +
  1807. '<div class="datetimepicker-days">' +
  1808. '<table class=" table-condensed">' +
  1809. DPGlobal.headTemplateV3 +
  1810. '<tbody></tbody>' +
  1811. DPGlobal.footTemplate +
  1812. '</table>' +
  1813. '</div>' +
  1814. '<div class="datetimepicker-months">' +
  1815. '<table class="table-condensed">' +
  1816. DPGlobal.headTemplateV3 +
  1817. DPGlobal.contTemplate +
  1818. DPGlobal.footTemplate +
  1819. '</table>' +
  1820. '</div>' +
  1821. '<div class="datetimepicker-years">' +
  1822. '<table class="table-condensed">' +
  1823. DPGlobal.headTemplateV3 +
  1824. DPGlobal.contTemplate +
  1825. DPGlobal.footTemplate +
  1826. '</table>' +
  1827. '</div>' +
  1828. '</div>';
  1829. $.fn.datetimepicker.DPGlobal = DPGlobal;
  1830. /* DATETIMEPICKER NO CONFLICT
  1831. * =================== */
  1832. $.fn.datetimepicker.noConflict = function () {
  1833. $.fn.datetimepicker = old;
  1834. return this;
  1835. };
  1836. /* DATETIMEPICKER DATA-API
  1837. * ================== */
  1838. $(document).on(
  1839. 'focus.datetimepicker.data-api click.datetimepicker.data-api',
  1840. '[data-provide="datetimepicker"]',
  1841. function (e) {
  1842. var $this = $(this);
  1843. if ($this.data('datetimepicker')) return;
  1844. e.preventDefault();
  1845. // component click requires us to explicitly show it
  1846. $this.datetimepicker('show');
  1847. }
  1848. );
  1849. $(function () {
  1850. $('[data-provide="datetimepicker-inline"]').datetimepicker();
  1851. });
  1852. }));