(function ($) { var defaults = { TotalNum: 5, //===== getScore: true, setScore: false, getAndSet: true, userRate: 0, //===== fontIcon: true, iclasses: { unselect: 'fa-circle-o', select: 'fa-dot-circle-o', generalIconCssClass: 'customIcon' }, //===== htmlelement: false, spansize: 20, //===== writeScore: true, writeScoreOptions: { writeScoreText: "امتیاز دهید" }, //====== dynamicOption: false, dynamicValues:[1,2,3,4,5] }; $.fn.giveScore = function (options) { if (this.length == 0) { return this; } // support mutltiple elements if (this.length > 1) { this.each(function () { $(this).giveScore(options); }); return this; } var base = $(this), rate1 = 0, baseRating, inputVal, defaultRating, finalHtmlTags = '', rateSystem = {}; var scoreType, sc, temp, selectedScoreNum, substr; var setup = function () { inputVal = base.val(); base.after('
').hide(); baseRating = base.next('.scoresContainer'); baseRating.wrap('
'); if (rateSystem.settings.fontIcon) { for (var l = 0; l < rateSystem.settings.TotalNum; l++) { finalHtmlTags += ''; }; baseRating.html(finalHtmlTags); if (rateSystem.settings.writeScore || (base.attr('data-showScore') != undefined && base.attr('data-showScore') === "1")) { baseRating.parent('.scoreWrapper').append('' + defaultLable(rateSystem.settings.userRate) + ''); scoreType = baseRating.parent().find('.rate_Score'); } ///if use span } else if (rateSystem.settings.htmlelement) { if (rateSystem.settings.writeScore || (base.attr('data-showScore') != undefined && base.attr('data-showScore') === "1")) baseRating.append('' + inputVal + ''); for (var i = 0; i < rateSystem.settings.TotalNum; i++) { finalHtmlTags += ''; var sel = ''; for (var j = 0; j < 10; j++) { sel += ''; }; finalHtmlTags += sel + ''; } baseRating.append(finalHtmlTags); } }; var writeScore = function (value) { var scoreValueArr = ['خیلی بد', 'بد', 'متوسط', 'خوب', 'عالی']; if (rateSystem.settings.dynamicOption) { scoreValueArr = rateSystem.settings.dynamicValues ; } switch (value) { case 0: baseRating.parent().find('.rate_Score').html(rateSystem.settings.writeScoreOptions.writeScoreText); break; case 1: baseRating.parent().find('.rate_Score').html(scoreValueArr[0]); break; case 2: baseRating.parent().find('.rate_Score').html(scoreValueArr[1]); break; case 3: baseRating.parent().find('.rate_Score').html(scoreValueArr[2]); break; case 4: baseRating.parent().find('.rate_Score').html(scoreValueArr[3]); break; case 5: case 6: baseRating.parent().find('.rate_Score').html(scoreValueArr[4]); break; } } var defaultLable = function (value) { var scoreValueArr = ['خیلی بد', 'بد', 'متوسط', 'خوب', 'عالی']; if (rateSystem.settings.dynamicOption) { scoreValueArr = rateSystem.settings.dynamicValues; } var label = ''; switch (value) { case 0: label = rateSystem.settings.writeScoreOptions.writeScoreText; break; case 1: label = scoreValueArr[0]; break; case 2: label = scoreValueArr[1]; break; case 3: label = scoreValueArr[2]; break; case 4: label = scoreValueArr[3]; break; case 5: case 6: label = scoreValueArr[4]; break; } return label; } var init = function () { rateSystem.settings = $.extend({}, defaults, options); setup(); if ((rateSystem.settings.getScore && !rateSystem.settings.setScore && !rateSystem.settings.htmlelement) || (rateSystem.settings.getAndSet && !rateSystem.settings.htmlelement)) { //if (rateSystem.settings.getAndSet && !rateSystem.settings.setScore && !rateSystem.settings.getScore) { if (rateSystem.settings.getAndSet) { baseRating.children().each(function (i) { if (i < inputVal) { $(this) .attr('data-rating', '1') .addClass(rateSystem.settings.iclasses.select) .removeClass(rateSystem.settings.iclasses.unselect); } else { $(this) .attr('data-rating', '0'); } }); rate1 = 1; } baseRating.children().hover( function () { $(this).prevAll().addBack().addClass(rateSystem.settings.iclasses.select).removeClass(rateSystem.settings.iclasses.unselect); $(this).nextAll().removeClass(rateSystem.settings.iclasses.select).addClass(rateSystem.settings.iclasses.unselect); if (rateSystem.settings.writeScore || (base.attr('data-showScore') != undefined && base.attr('data-showScore') === "1")) { var sc = parseInt($(this).index(), 10) + 1; writeScore(sc); } }, function () { if (rate1 === 0) { $(this).prevAll().addBack().removeClass(rateSystem.settings.iclasses.select).addClass(rateSystem.settings.iclasses.unselect); if (rateSystem.settings.writeScore || base.attr('data-showScore') === "1") { scoreType.html(rateSystem.settings.writeScoreOptions.writeScoreText); } } else if (rate1 === 1) { $(this).parent().children().each(function () { if ($(this).attr('data-rating') === '0') { $(this).removeClass(rateSystem.settings.iclasses.select).addClass(rateSystem.settings.iclasses.unselect);; } else { $(this).addClass(rateSystem.settings.iclasses.select).removeClass(rateSystem.settings.iclasses.unselect); } }); if (rateSystem.settings.writeScore || base.attr('data-showScore') === 1) { sc = parseInt(baseRating.find('.' + rateSystem.settings.iclasses.select).last().index(), 10) + 1; writeScore(sc); } } }); baseRating.children().click(function () { $(this).prevAll().addBack().attr('data-rating', '1').addClass(rateSystem.settings.iclasses.select); $(this).nextAll().attr('data-rating', '0'); $(this).nextAll().removeClass('fa-star'); rate1 = 1; selectedScoreNum = baseRating.find('.' + rateSystem.settings.iclasses.select).length; if (rateSystem.settings.writeScore || base.attr('data-showScore') === "1") { // sc = $(this).index(); writeScore(selectedScoreNum); } if (typeof inputVal !== typeof undefined && inputVal !== false) { base.val(selectedScoreNum); base.change(); } }); } else if (rateSystem.settings.setScore && !rateSystem.settings.getScore) { if (rateSystem.settings.htmlelement && !rateSystem.settings.fontIcon) {//html elem inputVal = parseFloat(inputVal).toFixed(1); inputVal = inputVal.split('.'); if (inputVal[0] > 0) { baseRating.find('.rateItem').each(function (i) { if (i < inputVal[0]) { $(this).addClass('fillColor'); } }); baseRating.find('.fillColor').last().next().addClass('min'); } else if (inputVal[0] == 0 && inputVal[1] > 0) { baseRating.find('.rateItem').first().addClass('min'); } baseRating.find('.min>i').each(function (k) { if (k < inputVal[1]) { $(this).addClass('on'); } }); } else if (!rateSystem.settings.htmlelement && rateSystem.settings.fontIcon) {//font icon // var setVlaue = temp.val(); baseRating.children().each(function (i) { if (i < inputVal) { $(this) .attr('data-rating', '1') .addClass(rateSystem.settings.iclasses.select).addClass(rateSystem.settings.iclasses.generalIconCssClass) .removeClass(rateSystem.settings.iclasses.unselect); } }); } } } init(); } })(jQuery); /*! * jQuery Browser Plugin 0.1.0 * https://github.com/gabceb/jquery-browser-plugin * * Original jquery-browser code Copyright 2005, 2015 jQuery Foundation, Inc. and other contributors * http://jquery.org/license * * Modifications Copyright 2015 Gabriel Cebrian * https://github.com/gabceb * * Released under the MIT license * * Date: 05-07-2015 */ /*global window: false */ (function (factory) { if (typeof define === 'function' && define.amd) { // AMD. Register as an anonymous module. define(['jquery'], function ($) { return factory($); }); } else if (typeof module === 'object' && typeof module.exports === 'object') { // Node-like environment module.exports = factory(require('jquery')); } else { // Browser globals factory(window.jQuery); } }(function(jQuery) { "use strict"; function uaMatch( ua ) { // If an UA is not provided, default to the current browser UA. if ( ua === undefined ) { ua = window.navigator.userAgent; } ua = ua.toLowerCase(); var match = /(edge)\/([\w.]+)/.exec( ua ) || /(opr)[\/]([\w.]+)/.exec( ua ) || /(chrome)[ \/]([\w.]+)/.exec( ua ) || /(iemobile)[\/]([\w.]+)/.exec( ua ) || /(version)(applewebkit)[ \/]([\w.]+).*(safari)[ \/]([\w.]+)/.exec( ua ) || /(webkit)[ \/]([\w.]+).*(version)[ \/]([\w.]+).*(safari)[ \/]([\w.]+)/.exec( ua ) || /(webkit)[ \/]([\w.]+)/.exec( ua ) || /(opera)(?:.*version|)[ \/]([\w.]+)/.exec( ua ) || /(msie) ([\w.]+)/.exec( ua ) || ua.indexOf("trident") >= 0 && /(rv)(?::| )([\w.]+)/.exec( ua ) || ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec( ua ) || []; var platform_match = /(ipad)/.exec( ua ) || /(ipod)/.exec( ua ) || /(windows phone)/.exec( ua ) || /(iphone)/.exec( ua ) || /(kindle)/.exec( ua ) || /(silk)/.exec( ua ) || /(android)/.exec( ua ) || /(win)/.exec( ua ) || /(mac)/.exec( ua ) || /(linux)/.exec( ua ) || /(cros)/.exec( ua ) || /(playbook)/.exec( ua ) || /(bb)/.exec( ua ) || /(blackberry)/.exec( ua ) || []; var browser = {}, matched = { browser: match[ 5 ] || match[ 3 ] || match[ 1 ] || "", version: match[ 2 ] || match[ 4 ] || "0", versionNumber: match[ 4 ] || match[ 2 ] || "0", platform: platform_match[ 0 ] || "" }; if ( matched.browser ) { browser[ matched.browser ] = true; browser.version = matched.version; browser.versionNumber = parseInt(matched.versionNumber, 10); } if ( matched.platform ) { browser[ matched.platform ] = true; } // These are all considered mobile platforms, meaning they run a mobile browser if ( browser.android || browser.bb || browser.blackberry || browser.ipad || browser.iphone || browser.ipod || browser.kindle || browser.playbook || browser.silk || browser[ "windows phone" ]) { browser.mobile = true; } // These are all considered desktop platforms, meaning they run a desktop browser if ( browser.cros || browser.mac || browser.linux || browser.win ) { browser.desktop = true; } // Chrome, Opera 15+ and Safari are webkit based browsers if ( browser.chrome || browser.opr || browser.safari ) { browser.webkit = true; } // IE11 has a new token so we will assign it msie to avoid breaking changes if ( browser.rv || browser.iemobile) { var ie = "msie"; matched.browser = ie; browser[ie] = true; } // Edge is officially known as Microsoft Edge, so rewrite the key to match if ( browser.edge ) { delete browser.edge; var msedge = "msedge"; matched.browser = msedge; browser[msedge] = true; } // Blackberry browsers are marked as Safari on BlackBerry if ( browser.safari && browser.blackberry ) { var blackberry = "blackberry"; matched.browser = blackberry; browser[blackberry] = true; } // Playbook browsers are marked as Safari on Playbook if ( browser.safari && browser.playbook ) { var playbook = "playbook"; matched.browser = playbook; browser[playbook] = true; } // BB10 is a newer OS version of BlackBerry if ( browser.bb ) { var bb = "blackberry"; matched.browser = bb; browser[bb] = true; } // Opera 15+ are identified as opr if ( browser.opr ) { var opera = "opera"; matched.browser = opera; browser[opera] = true; } // Stock Android browsers are marked as Safari on Android. if ( browser.safari && browser.android ) { var android = "android"; matched.browser = android; browser[android] = true; } // Kindle browsers are marked as Safari on Kindle if ( browser.safari && browser.kindle ) { var kindle = "kindle"; matched.browser = kindle; browser[kindle] = true; } // Kindle Silk browsers are marked as Safari on Kindle if ( browser.safari && browser.silk ) { var silk = "silk"; matched.browser = silk; browser[silk] = true; } // Assign the name and platform variable browser.name = matched.browser; browser.platform = matched.platform; return browser; } // Run the matching process, also assign the function to the returned object // for manual, jQuery-free use if desired window.jQBrowser = uaMatch( window.navigator.userAgent ); window.jQBrowser.uaMatch = uaMatch; // Only assign to jQuery.browser if jQuery is loaded if ( jQuery ) { jQuery.browser = window.jQBrowser; } return window.jQBrowser; })); function mod(a, b) {return a - (b * Math.floor(a / b));} /* JavaScript functions for the Fourmilab Calendar Converter by John Walker -- September, MIM http://www.fourmilab.ch/documents/calendar/ This program is in the public domain. */ function leap_gregorian(year) { return ((year % 4) == 0) && (!(((year % 100) == 0) && ((year % 400) != 0))); } var GREGORIAN_EPOCH = 1721425.5; function gregorian_to_jd(year, month, day) { return (GREGORIAN_EPOCH - 1) + (365 * (year - 1)) + Math.floor((year - 1) / 4) + (-Math.floor((year - 1) / 100)) + Math.floor((year - 1) / 400) + Math.floor((((367 * month) - 362) / 12) + ((month <= 2) ? 0 : (leap_gregorian(year) ? -1 : -2) ) + day); } function jd_to_gregorian(jd) { var wjd, depoch, quadricent, dqc, cent, dcent, quad, dquad, yindex, dyindex, year, yearday, leapadj; wjd = Math.floor(jd - 0.5) + 0.5; depoch = wjd - GREGORIAN_EPOCH; quadricent = Math.floor(depoch / 146097); dqc = mod(depoch, 146097); cent = Math.floor(dqc / 36524); dcent = mod(dqc, 36524); quad = Math.floor(dcent / 1461); dquad = mod(dcent, 1461); yindex = Math.floor(dquad / 365); year = (quadricent * 400) + (cent * 100) + (quad * 4) + yindex; if (!((cent == 4) || (yindex == 4))) { year++; } yearday = wjd - gregorian_to_jd(year, 1, 1); leapadj = ((wjd < gregorian_to_jd(year, 3, 1)) ? 0 : (leap_gregorian(year) ? 1 : 2) ); month = Math.floor((((yearday + leapadj) * 12) + 373) / 367); day = (wjd - gregorian_to_jd(year, month, 1)) + 1; return new Array(year, month, day); } function leap_islamic(year) { return (((year * 11) + 14) % 30) < 11; } var ISLAMIC_EPOCH = 1948439.5; function islamic_to_jd(year, month, day) { return (day + Math.ceil(29.5 * (month - 1)) + (year - 1) * 354 + Math.floor((3 + (11 * year)) / 30) + ISLAMIC_EPOCH) - 1; } function jd_to_islamic(jd) { var year, month, day; jd = Math.floor(jd) + 0.5; year = Math.floor(((30 * (jd - ISLAMIC_EPOCH)) + 10646) / 10631); month = Math.min(12, Math.ceil((jd - (29 + islamic_to_jd(year, 1, 1))) / 29.5) + 1); day = (jd - islamic_to_jd(year, month, 1)) + 1; return new Array(year, month, day); } function leap_persian(year) { return ((((((year - ((year > 0) ? 474 : 473)) % 2820) + 474) + 38) * 682) % 2816) < 682; } var PERSIAN_EPOCH = 1948320.5; function persian_to_jd(year, month, day) { var epbase, epyear; epbase = year - ((year >= 0) ? 474 : 473); epyear = 474 + mod(epbase, 2820); return day + ((month <= 7) ? ((month - 1) * 31) : (((month - 1) * 30) + 6) ) + Math.floor(((epyear * 682) - 110) / 2816) + (epyear - 1) * 365 + Math.floor(epbase / 2820) * 1029983 + (PERSIAN_EPOCH - 1); } function jd_to_persian(jd) { var year, month, day, depoch, cycle, cyear, ycycle, aux1, aux2, yday; jd = Math.floor(jd) + 0.5; depoch = jd - persian_to_jd(475, 1, 1); cycle = Math.floor(depoch / 1029983); cyear = mod(depoch, 1029983); if (cyear == 1029982) { ycycle = 2820; } else { aux1 = Math.floor(cyear / 366); aux2 = mod(cyear, 366); ycycle = Math.floor(((2134 * aux1) + (2816 * aux2) + 2815) / 1028522) + aux1 + 1; } year = ycycle + (2820 * cycle) + 474; if (year <= 0) { year--; } yday = (jd - persian_to_jd(year, 1, 1)) + 1; month = (yday <= 186) ? Math.ceil(yday / 31) : Math.ceil((yday - 6) / 30); day = (jd - persian_to_jd(year, month, 1)) + 1; return new Array(year, month, day); } /* * jQuery UI Datepicker 1.8.14 (with custom calendar support) * * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) * Dual licensed under the MIT or GPL Version 2 licenses. * http://jquery.org/license * * http://docs.jquery.com/UI/Datepicker * * Support for custom calendar added by Mahdi Hasheminezhad. email: hasheminezhad at gmail dot com (http://hasheminezhad.com) * Release date: 2011-08-05 * * Depends: * jquery.ui.core.js */ (function( $, undefined ) { $.extend($.ui, { datepicker: { version: "1.8.14" } }); var PROP_NAME = 'datepicker'; var dpuuid = new Date().getTime(); var instActive; /* Date picker manager. Use the singleton instance of this class, $.datepicker, to interact with the date picker. Settings for (groups of) date pickers are maintained in an instance object, allowing multiple different settings on the same page. */ function Datepicker() { this.debug = false; // Change this to true to start debugging this._curInst = null; // The current instance in use this._keyEvent = false; // If the last event was a key event this._disabledInputs = []; // List of date picker inputs that have been disabled this._datepickerShowing = false; // True if the popup picker is showing , false if not this._inDialog = false; // True if showing within a "dialog", false if not this._mainDivId = 'ui-datepicker-div'; // The ID of the main datepicker division this._inlineClass = 'ui-datepicker-inline'; // The name of the inline marker class this._appendClass = 'ui-datepicker-append'; // The name of the append marker class this._triggerClass = 'ui-datepicker-trigger'; // The name of the trigger marker class this._dialogClass = 'ui-datepicker-dialog'; // The name of the dialog marker class this._disableClass = 'ui-datepicker-disabled'; // The name of the disabled covering marker class this._unselectableClass = 'ui-datepicker-unselectable'; // The name of the unselectable cell marker class this._currentClass = 'ui-datepicker-current-day'; // The name of the current day marker class this._dayOverClass = 'ui-datepicker-days-cell-over'; // The name of the day hover marker class this.regional = []; // Available regional settings, indexed by language code this.regional[''] = { // Default regional settings calendar: Date, //[CC] closeText: 'Done', // Display text for close link prevText: 'Prev', // Display text for previous month link nextText: 'Next', // Display text for next month link currentText: 'Today', // Display text for current month link monthNames: ['January','February','March','April','May','June', 'July','August','September','October','November','December'], // Names of months for drop-down and formatting monthNamesShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], // For formatting dayNames: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'], // For formatting dayNamesShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'], // For formatting dayNamesMin: ['Su','Mo','Tu','We','Th','Fr','Sa'], // Column headings for days starting at Sunday weekHeader: 'Wk', // Column header for week of the year dateFormat: 'mm/dd/yy', // See format options on parseDate firstDay: 0, // The first day of the week, Sun = 0, Mon = 1, ... isRTL: false, // True if right-to-left language, false if left-to-right showMonthAfterYear: false, // True if the year select precedes month, false for month then year yearSuffix: '' // Additional text to append to the year in the month headers }; this._defaults = { // Global defaults for all the date picker instances showOn: 'focus', // 'focus' for popup on focus, // 'button' for trigger button, or 'both' for either showAnim: 'fadeIn', // Name of jQuery animation for popup showOptions: {}, // Options for enhanced animations defaultDate: null, // Used when field is blank: actual date, // +/-number for offset from today, null for today appendText: '', // Display text following the input box, e.g. showing the format buttonText: '...', // Text for trigger button buttonImage: '', // URL for trigger button image buttonImageOnly: false, // True if the image appears alone, false if it appears on a button hideIfNoPrevNext: false, // True to hide next/previous month links // if not applicable, false to just disable them navigationAsDateFormat: false, // True if date formatting applied to prev/today/next links gotoCurrent: false, // True if today link goes back to current selection instead changeMonth: false, // True if month can be selected directly, false if only prev/next changeYear: false, // True if year can be selected directly, false if only prev/next yearRange: 'c-10:c+10', // Range of years to display in drop-down, // either relative to today's year (-nn:+nn), relative to currently displayed year // (c-nn:c+nn), absolute (nnnn:nnnn), or a combination of the above (nnnn:-n) showOtherMonths: false, // True to show dates in other months, false to leave blank selectOtherMonths: false, // True to allow selection of dates in other months, false for unselectable showWeek: false, // True to show week of the year, false to not show it calculateWeek: this.iso8601Week, // How to calculate the week of the year, // takes a Date and returns the number of the week for it shortYearCutoff: '+10', // Short year values < this are in the current century, // > this are in the previous century, // string value starting with '+' for current year + value minDate: null, // The earliest selectable date, or null for no limit maxDate: null, // The latest selectable date, or null for no limit duration: 'fast', // Duration of display/closure beforeShowDay: null, // Function that takes a date and returns an array with // [0] = true if selectable, false if not, [1] = custom CSS class name(s) or '', // [2] = cell title (optional), e.g. $.datepicker.noWeekends beforeShow: null, // Function that takes an input field and // returns a set of custom settings for the date picker onSelect: null, // Define a callback function when a date is selected onChangeMonthYear: null, // Define a callback function when the month or year is changed onClose: null, // Define a callback function when the datepicker is closed numberOfMonths: 1, // Number of months to show at a time showCurrentAtPos: 0, // The position in multipe months at which to show the current month (starting at 0) stepMonths: 1, // Number of months to step back/forward stepBigMonths: 12, // Number of months to step back/forward for the big links altField: '', // Selector for an alternate field to store selected dates into altFormat: '', // The date format to use for the alternate field constrainInput: true, // The input is constrained by the current date format showButtonPanel: false, // True to show button panel, false to not show it autoSize: false // True to size the input for the date format, false to leave as is }; $.extend(this._defaults, this.regional['']); this.dpDiv = bindHover($('
')); } $.extend(Datepicker.prototype, { /* Class name added to elements to indicate already configured with a date picker. */ markerClassName: 'hasDatepicker', //Keep track of the maximum number of rows displayed (see #7043) maxRows: 4, /* Debug logging (if enabled). */ log: function () { if (this.debug) console.log.apply('', arguments); }, // TODO rename to "widget" when switching to widget factory _widgetDatepicker: function() { return this.dpDiv; }, /* Override the default settings for all instances of the date picker. @param settings object - the new settings to use as defaults (anonymous object) @return the manager object */ setDefaults: function(settings) { extendRemove(this._defaults, settings || {}); return this; }, /* Attach the date picker to a jQuery selection. @param target element - the target input field or division or span @param settings object - the new settings to use for this date picker instance (anonymous) */ _attachDatepicker: function(target, settings) { // check for settings on the control itself - in namespace 'date:' var inlineSettings = null; for (var attrName in this._defaults) { var attrValue = target.getAttribute('date:' + attrName); if (attrValue) { inlineSettings = inlineSettings || {}; try { inlineSettings[attrName] = eval(attrValue); } catch (err) { inlineSettings[attrName] = attrValue; } } } var nodeName = target.nodeName.toLowerCase(); var inline = (nodeName == 'div' || nodeName == 'span'); if (!target.id) { this.uuid += 1; target.id = 'dp' + this.uuid; } var inst = this._newInst($(target), inline); var regional = $.extend({}, settings && this.regional[settings['regional']] || {});//[CC] inst.settings = $.extend(regional, settings || {}, inlineSettings || {});//[CC] if (nodeName == 'input') { this._connectDatepicker(target, inst); } else if (inline) { this._inlineDatepicker(target, inst); } }, /* Create a new instance object. */ _newInst: function(target, inline) { var id = target[0].id.replace(/([^A-Za-z0-9_-])/g, '\\\\$1'); // escape jQuery meta chars return {id: id, input: target, // associated target selectedDay: 0, selectedMonth: 0, selectedYear: 0, // current selection drawMonth: 0, drawYear: 0, // month being drawn inline: inline, // is datepicker inline or not dpDiv: (!inline ? this.dpDiv : // presentation div bindHover($('
')))}; }, /* Attach the date picker to an input field. */ _connectDatepicker: function(target, inst) { var input = $(target); inst.append = $([]); inst.trigger = $([]); if (input.hasClass(this.markerClassName)) return; this._attachments(input, inst); input.addClass(this.markerClassName).keydown(this._doKeyDown). keypress(this._doKeyPress).keyup(this._doKeyUp). bind("setData.datepicker", function(event, key, value) { inst.settings[key] = value; }).bind("getData.datepicker", function(event, key) { return this._get(inst, key); }); this._autoSize(inst); $.data(target, PROP_NAME, inst); }, /* Make attachments based on settings. */ _attachments: function(input, inst) { var appendText = this._get(inst, 'appendText'); var isRTL = false; //[CC] old code was: this._get(inst, 'isRTL'); if (inst.append) inst.append.remove(); if (appendText) { inst.append = $('' + appendText + ''); input[isRTL ? 'before' : 'after'](inst.append); } input.unbind('focus', this._showDatepicker); if (inst.trigger) inst.trigger.remove(); var showOn = this._get(inst, 'showOn'); if (showOn == 'focus' || showOn == 'both') // pop-up date picker when in the marked field input.focus(this._showDatepicker); if (showOn == 'button' || showOn == 'both') { // pop-up date picker when button clicked var buttonText = this._get(inst, 'buttonText'); var buttonImage = this._get(inst, 'buttonImage'); inst.trigger = $(this._get(inst, 'buttonImageOnly') ? $('').addClass(this._triggerClass). attr({ src: buttonImage, alt: buttonText, title: buttonText }) : $('').addClass(this._triggerClass). html(buttonImage == '' ? buttonText : $('').attr( { src:buttonImage, alt:buttonText, title:buttonText }))); input[isRTL ? 'before' : 'after'](inst.trigger); inst.trigger.click(function() { if ($.datepicker._datepickerShowing && $.datepicker._lastInput == input[0]) $.datepicker._hideDatepicker(); else $.datepicker._showDatepicker(input[0]); return false; }); } }, /* Apply the maximum length for the date format. */ _autoSize: function(inst) { if (this._get(inst, 'autoSize') && !inst.inline) { var date = new Date(2009, 12 - 1, 20); // Ensure double digits var dateFormat = this._get(inst, 'dateFormat'); if (dateFormat.match(/[DM]/)) { var findMax = function(names) { var max = 0; var maxI = 0; for (var i = 0; i < names.length; i++) { if (names[i].length > max) { max = names[i].length; maxI = i; } } return maxI; }; date.setMonth(findMax(this._get(inst, (dateFormat.match(/MM/) ? 'monthNames' : 'monthNamesShort')))); date.setDate(findMax(this._get(inst, (dateFormat.match(/DD/) ? 'dayNames' : 'dayNamesShort'))) + 20 - date.getDay()); } inst.input.attr('size', this._formatDate(inst, date).length); } }, /* Attach an inline date picker to a div. */ _inlineDatepicker: function(target, inst) { var divSpan = $(target); if (divSpan.hasClass(this.markerClassName)) return; divSpan.addClass(this.markerClassName).append(inst.dpDiv). bind("setData.datepicker", function(event, key, value){ inst.settings[key] = value; }).bind("getData.datepicker", function(event, key){ return this._get(inst, key); }); $.data(target, PROP_NAME, inst); this._setDate(inst, this._getDefaultDate(inst), true); this._updateDatepicker(inst); this._updateAlternate(inst); inst.dpDiv.show(); }, /* Pop-up the date picker in a "dialog" box. @param input element - ignored @param date string or Date - the initial date to display @param onSelect function - the function to call when a date is selected @param settings object - update the dialog date picker instance's settings (anonymous object) @param pos int[2] - coordinates for the dialog's position within the screen or event - with x/y coordinates or leave empty for default (screen centre) @return the manager object */ _dialogDatepicker: function(input, date, onSelect, settings, pos) { var inst = this._dialogInst; // internal instance if (!inst) { this.uuid += 1; var id = 'dp' + this.uuid; this._dialogInput = $(''); this._dialogInput.keydown(this._doKeyDown); $('body').append(this._dialogInput); inst = this._dialogInst = this._newInst(this._dialogInput, false); inst.settings = {}; $.data(this._dialogInput[0], PROP_NAME, inst); } extendRemove(inst.settings, settings || {}); date = (date && date.constructor == Date ? this._formatDate(inst, date) : date); this._dialogInput.val(date); this._pos = (pos ? (pos.length ? pos : [pos.pageX, pos.pageY]) : null); if (!this._pos) { var browserWidth = document.documentElement.clientWidth; var browserHeight = document.documentElement.clientHeight; var scrollX = document.documentElement.scrollLeft || document.body.scrollLeft; var scrollY = document.documentElement.scrollTop || document.body.scrollTop; this._pos = // should use actual width/height below [(browserWidth / 2) - 100 + scrollX, (browserHeight / 2) - 150 + scrollY]; } // move input on screen for focus, but hidden behind dialog this._dialogInput.css('left', (this._pos[0] + 20) + 'px').css('top', this._pos[1] + 'px'); inst.settings.onSelect = onSelect; this._inDialog = true; this.dpDiv.addClass(this._dialogClass); this._showDatepicker(this._dialogInput[0]); if ($.blockUI) $.blockUI(this.dpDiv); $.data(this._dialogInput[0], PROP_NAME, inst); return this; }, /* Detach a datepicker from its control. @param target element - the target input field or division or span */ _destroyDatepicker: function(target) { var $target = $(target); var inst = $.data(target, PROP_NAME); if (!$target.hasClass(this.markerClassName)) { return; } var nodeName = target.nodeName.toLowerCase(); $.removeData(target, PROP_NAME); if (nodeName == 'input') { inst.append.remove(); inst.trigger.remove(); $target.removeClass(this.markerClassName). unbind('focus', this._showDatepicker). unbind('keydown', this._doKeyDown). unbind('keypress', this._doKeyPress). unbind('keyup', this._doKeyUp); } else if (nodeName == 'div' || nodeName == 'span') $target.removeClass(this.markerClassName).empty(); }, /* Enable the date picker to a jQuery selection. @param target element - the target input field or division or span */ _enableDatepicker: function(target) { var $target = $(target); var inst = $.data(target, PROP_NAME); if (!$target.hasClass(this.markerClassName)) { return; } var nodeName = target.nodeName.toLowerCase(); if (nodeName == 'input') { target.disabled = false; inst.trigger.filter('button'). each(function() { this.disabled = false; }).end(). filter('img').css({opacity: '1.0', cursor: ''}); } else if (nodeName == 'div' || nodeName == 'span') { var inline = $target.children('.' + this._inlineClass); inline.children().removeClass('ui-state-disabled'); inline.find("select.ui-datepicker-month, select.ui-datepicker-year"). removeAttr("disabled"); } this._disabledInputs = $.map(this._disabledInputs, function(value) { return (value == target ? null : value); }); // delete entry }, /* Disable the date picker to a jQuery selection. @param target element - the target input field or division or span */ _disableDatepicker: function(target) { var $target = $(target); var inst = $.data(target, PROP_NAME); if (!$target.hasClass(this.markerClassName)) { return; } var nodeName = target.nodeName.toLowerCase(); if (nodeName == 'input') { target.disabled = true; inst.trigger.filter('button'). each(function() { this.disabled = true; }).end(). filter('img').css({opacity: '0.5', cursor: 'default'}); } else if (nodeName == 'div' || nodeName == 'span') { var inline = $target.children('.' + this._inlineClass); inline.children().addClass('ui-state-disabled'); inline.find("select.ui-datepicker-month, select.ui-datepicker-year"). attr("disabled", "disabled"); } this._disabledInputs = $.map(this._disabledInputs, function(value) { return (value == target ? null : value); }); // delete entry this._disabledInputs[this._disabledInputs.length] = target; }, /* Is the first field in a jQuery collection disabled as a datepicker? @param target element - the target input field or division or span @return boolean - true if disabled, false if enabled */ _isDisabledDatepicker: function(target) { if (!target) { return false; } for (var i = 0; i < this._disabledInputs.length; i++) { if (this._disabledInputs[i] == target) return true; } return false; }, /* Retrieve the instance data for the target control. @param target element - the target input field or division or span @return object - the associated instance data @throws error if a jQuery problem getting data */ _getInst: function(target) { try { return $.data(target, PROP_NAME); } catch (err) { throw 'Missing instance data for this datepicker'; } }, /* Update or retrieve the settings for a date picker attached to an input field or division. @param target element - the target input field or division or span @param name object - the new settings to update or string - the name of the setting to change or retrieve, when retrieving also 'all' for all instance settings or 'defaults' for all global defaults @param value any - the new value for the setting (omit if above is an object or to retrieve a value) */ _optionDatepicker: function(target, name, value) { var inst = this._getInst(target); if (arguments.length == 2 && typeof name == 'string') { return (name == 'defaults' ? $.extend({}, $.datepicker._defaults) : (inst ? (name == 'all' ? $.extend({}, inst.settings) : this._get(inst, name)) : null)); } var settings = name || {}; if (typeof name == 'string') { settings = {}; settings[name] = value; } if (inst) { if (this._curInst == inst) { this._hideDatepicker(); } var date = this._getDateDatepicker(target, true); var minDate = this._getMinMaxDate(inst, 'min'); var maxDate = this._getMinMaxDate(inst, 'max'); extendRemove(inst.settings, settings); // reformat the old minDate/maxDate values if dateFormat changes and a new minDate/maxDate isn't provided if (minDate !== null && settings['dateFormat'] !== undefined && settings['minDate'] === undefined) inst.settings.minDate = this._formatDate(inst, minDate); if (maxDate !== null && settings['dateFormat'] !== undefined && settings['maxDate'] === undefined) inst.settings.maxDate = this._formatDate(inst, maxDate); this._attachments($(target), inst); this._autoSize(inst); this._setDate(inst, date); this._updateAlternate(inst); this._updateDatepicker(inst); } }, // change method deprecated _changeDatepicker: function(target, name, value) { this._optionDatepicker(target, name, value); }, /* Redraw the date picker attached to an input field or division. @param target element - the target input field or division or span */ _refreshDatepicker: function(target) { var inst = this._getInst(target); if (inst) { this._updateDatepicker(inst); } }, /* Set the dates for a jQuery selection. @param target element - the target input field or division or span @param date Date - the new date */ _setDateDatepicker: function(target, date) { var inst = this._getInst(target); if (inst) { this._setDate(inst, date); this._updateDatepicker(inst); this._updateAlternate(inst); } }, /* Get the date(s) for the first entry in a jQuery selection. @param target element - the target input field or division or span @param noDefault boolean - true if no default date is to be used @return Date - the current date */ _getDateDatepicker: function(target, noDefault) { var inst = this._getInst(target); if (inst && !inst.inline) this._setDateFromField(inst, noDefault); return (inst ? this._getDate(inst) : null); }, /* Handle keystrokes. */ _doKeyDown: function(event) { var inst = $.datepicker._getInst(event.target); var handled = true; var isRTL = inst.dpDiv.is('.ui-datepicker-rtl'); inst._keyEvent = true; if ($.datepicker._datepickerShowing) switch (event.keyCode) { case 9: $.datepicker._hideDatepicker(); handled = false; break; // hide on tab out case 13: var sel = $('td.' + $.datepicker._dayOverClass + ':not(.' + $.datepicker._currentClass + ')', inst.dpDiv); if (sel[0]) $.datepicker._selectDay(event.target, inst.selectedMonth, inst.selectedYear, sel[0]); else $.datepicker._hideDatepicker(); return false; // don't submit the form break; // select the value on enter case 27: $.datepicker._hideDatepicker(); break; // hide on escape case 33: $.datepicker._adjustDate(event.target, (event.ctrlKey ? -$.datepicker._get(inst, 'stepBigMonths') : -$.datepicker._get(inst, 'stepMonths')), 'M'); break; // previous month/year on page up/+ ctrl case 34: $.datepicker._adjustDate(event.target, (event.ctrlKey ? +$.datepicker._get(inst, 'stepBigMonths') : +$.datepicker._get(inst, 'stepMonths')), 'M'); break; // next month/year on page down/+ ctrl case 35: if (event.ctrlKey || event.metaKey) $.datepicker._clearDate(event.target); handled = event.ctrlKey || event.metaKey; break; // clear on ctrl or command +end case 36: if (event.ctrlKey || event.metaKey) $.datepicker._gotoToday(event.target); handled = event.ctrlKey || event.metaKey; break; // current on ctrl or command +home case 37: if (event.ctrlKey || event.metaKey) $.datepicker._adjustDate(event.target, (isRTL ? +1 : -1), 'D'); handled = event.ctrlKey || event.metaKey; // -1 day on ctrl or command +left if (event.originalEvent.altKey) $.datepicker._adjustDate(event.target, (event.ctrlKey ? -$.datepicker._get(inst, 'stepBigMonths') : -$.datepicker._get(inst, 'stepMonths')), 'M'); // next month/year on alt +left on Mac break; case 38: if (event.ctrlKey || event.metaKey) $.datepicker._adjustDate(event.target, -7, 'D'); handled = event.ctrlKey || event.metaKey; break; // -1 week on ctrl or command +up case 39: if (event.ctrlKey || event.metaKey) $.datepicker._adjustDate(event.target, (isRTL ? -1 : +1), 'D'); handled = event.ctrlKey || event.metaKey; // +1 day on ctrl or command +right if (event.originalEvent.altKey) $.datepicker._adjustDate(event.target, (event.ctrlKey ? +$.datepicker._get(inst, 'stepBigMonths') : +$.datepicker._get(inst, 'stepMonths')), 'M'); // next month/year on alt +right break; case 40: if (event.ctrlKey || event.metaKey) $.datepicker._adjustDate(event.target, +7, 'D'); handled = event.ctrlKey || event.metaKey; break; // +1 week on ctrl or command +down default: handled = false; } else if (event.keyCode == 36 && event.ctrlKey) // display the date picker on ctrl+home $.datepicker._showDatepicker(this); else { handled = false; } if (handled) { event.preventDefault(); event.stopPropagation(); } }, /* Filter entered characters - based on date format. */ _doKeyPress: function(event) { var inst = $.datepicker._getInst(event.target); if ($.datepicker._get(inst, 'constrainInput')) { var chars = $.datepicker._possibleChars($.datepicker._get(inst, 'dateFormat')); var chr = String.fromCharCode(event.charCode == undefined ? event.keyCode : event.charCode); return event.ctrlKey || event.metaKey || (chr < ' ' || !chars || chars.indexOf(chr) > -1); } }, /* Synchronise manual entry and field/alternate field. */ _doKeyUp: function(event) { var inst = $.datepicker._getInst(event.target); if (inst.input.val() != inst.lastVal) { try { var date = $.datepicker.parseDate($.datepicker._get(inst, 'dateFormat'), (inst.input ? inst.input.val() : null), $.datepicker._getFormatConfig(inst)); if (date) { // only if valid $.datepicker._setDateFromField(inst); $.datepicker._updateAlternate(inst); $.datepicker._updateDatepicker(inst); } } catch (event) { $.datepicker.log(event); } } return true; }, /* Pop-up the date picker for a given input field. @param input element - the input field attached to the date picker or event - if triggered by focus */ _showDatepicker: function(input) { input = input.target || input; if (input.nodeName.toLowerCase() != 'input') // find from button/image trigger input = $('input', input.parentNode)[0]; if ($.datepicker._isDisabledDatepicker(input) || $.datepicker._lastInput == input) // already here return; var inst = $.datepicker._getInst(input); if ($.datepicker._curInst && $.datepicker._curInst != inst) { if ( $.datepicker._datepickerShowing ) { $.datepicker._triggerOnClose($.datepicker._curInst); } $.datepicker._curInst.dpDiv.stop(true, true); } var beforeShow = $.datepicker._get(inst, 'beforeShow'); extendRemove(inst.settings, (beforeShow ? beforeShow.apply(input, [input, inst]) : {})); inst.lastVal = null; $.datepicker._lastInput = input; $.datepicker._setDateFromField(inst); if ($.datepicker._inDialog) // hide cursor input.value = ''; if (!$.datepicker._pos) { // position below input $.datepicker._pos = $.datepicker._findPos(input); $.datepicker._pos[1] += input.offsetHeight; // add the height } var isFixed = false; $(input).parents().each(function() { isFixed |= $(this).css('position') == 'fixed'; return !isFixed; }); if (isFixed && $.browser.opera) { // correction for Opera when fixed and scrolled $.datepicker._pos[0] -= document.documentElement.scrollLeft; $.datepicker._pos[1] -= document.documentElement.scrollTop; } var offset = {left: $.datepicker._pos[0], top: $.datepicker._pos[1]}; $.datepicker._pos = null; //to avoid flashes on Firefox inst.dpDiv.empty(); // determine sizing offscreen inst.dpDiv.css({position: 'absolute', display: 'block', top: '-1000px'}); $.datepicker._updateDatepicker(inst); // fix width for dynamic number of date pickers // and adjust position before showing offset = $.datepicker._checkOffset(inst, offset, isFixed); inst.dpDiv.css({position: ($.datepicker._inDialog && $.blockUI ? 'static' : (isFixed ? 'fixed' : 'absolute')), display: 'none', left: offset.left + 'px', top: offset.top + 'px'}); if (!inst.inline) { var showAnim = $.datepicker._get(inst, 'showAnim'); var duration = $.datepicker._get(inst, 'duration'); var postProcess = function() { var cover = inst.dpDiv.find('iframe.ui-datepicker-cover'); // IE6- only if( !! cover.length ){ var borders = $.datepicker._getBorders(inst.dpDiv); cover.css({left: -borders[0], top: -borders[1], width: inst.dpDiv.outerWidth(), height: inst.dpDiv.outerHeight()}); } }; //inst.dpDiv.zIndex($(input).zIndex() + 1); inst.dpDiv.css("zIndex", $(input).css("zIndex") + 1); $.datepicker._datepickerShowing = true; if ($.effects && $.effects[showAnim]) inst.dpDiv.show(showAnim, $.datepicker._get(inst, 'showOptions'), duration, postProcess); else inst.dpDiv[showAnim || 'show']((showAnim ? duration : null), postProcess); if (!showAnim || !duration) postProcess(); if (inst.input.is(':visible') && !inst.input.is(':disabled')) inst.input.focus(); $.datepicker._curInst = inst; } }, /* Generate the date picker content. */ _updateDatepicker: function(inst) { var self = this; self.maxRows = 4; //Reset the max number of rows being displayed (see #7043) var borders = $.datepicker._getBorders(inst.dpDiv); instActive = inst; // for delegate hover events inst.dpDiv.empty().append(this._generateHTML(inst)); var cover = inst.dpDiv.find('iframe.ui-datepicker-cover'); // IE6- only if( !!cover.length ){ //avoid call to outerXXXX() when not in IE6 cover.css({left: -borders[0], top: -borders[1], width: inst.dpDiv.outerWidth(), height: inst.dpDiv.outerHeight()}) } inst.dpDiv.find('.' + this._dayOverClass + ' a').mouseover(); var numMonths = this._getNumberOfMonths(inst); var cols = numMonths[1]; var width = 17; inst.dpDiv.removeClass('ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4').width(''); if (cols > 1) inst.dpDiv.addClass('ui-datepicker-multi-' + cols).css('width', (width * cols) + 'em'); inst.dpDiv[(numMonths[0] != 1 || numMonths[1] != 1 ? 'add' : 'remove') + 'Class']('ui-datepicker-multi'); inst.dpDiv[(this._get(inst, 'isRTL') ? 'add' : 'remove') + 'Class']('ui-datepicker-rtl'); if (inst == $.datepicker._curInst && $.datepicker._datepickerShowing && inst.input && // #6694 - don't focus the input if it's already focused // this breaks the change event in IE inst.input.is(':visible') && !inst.input.is(':disabled') && inst.input[0] != document.activeElement) inst.input.focus(); // deffered render of the years select (to avoid flashes on Firefox) if( inst.yearshtml ){ var origyearshtml = inst.yearshtml; setTimeout(function(){ //assure that inst.yearshtml didn't change. if( origyearshtml === inst.yearshtml && inst.yearshtml ){ inst.dpDiv.find('select.ui-datepicker-year:first').replaceWith(inst.yearshtml); } origyearshtml = inst.yearshtml = null; }, 0); } }, /* Retrieve the size of left and top borders for an element. @param elem (jQuery object) the element of interest @return (number[2]) the left and top borders */ _getBorders: function(elem) { var convert = function(value) { return {thin: 1, medium: 2, thick: 3}[value] || value; }; return [parseFloat(convert(elem.css('border-left-width'))), parseFloat(convert(elem.css('border-top-width')))]; }, /* Check positioning to remain on screen. */ _checkOffset: function(inst, offset, isFixed) { var dpWidth = inst.dpDiv.outerWidth(); var dpHeight = inst.dpDiv.outerHeight(); var inputWidth = inst.input ? inst.input.outerWidth() : 0; var inputHeight = inst.input ? inst.input.outerHeight() : 0; var viewWidth = document.documentElement.clientWidth + $(document).scrollLeft(); var viewHeight = document.documentElement.clientHeight + $(document).scrollTop(); offset.left -= (this._get(inst, 'isRTL') ? (dpWidth - inputWidth) : 0); offset.left -= (isFixed && offset.left == inst.input.offset().left) ? $(document).scrollLeft() : 0; offset.top -= (isFixed && offset.top == (inst.input.offset().top + inputHeight)) ? $(document).scrollTop() : 0; // now check if datepicker is showing outside window viewport - move to a better place if so. offset.left -= Math.min(offset.left, (offset.left + dpWidth > viewWidth && viewWidth > dpWidth) ? Math.abs(offset.left + dpWidth - viewWidth) : 0); offset.top -= Math.min(offset.top, (offset.top + dpHeight > viewHeight && viewHeight > dpHeight) ? Math.abs(dpHeight + inputHeight) : 0); return offset; }, /* Find an object's position on the screen. */ _findPos: function(obj) { var inst = this._getInst(obj); var isRTL = this._get(inst, 'isRTL'); while (obj && (obj.type == 'hidden' || obj.nodeType != 1 || $.expr.filters.hidden(obj))) { obj = obj[isRTL ? 'previousSibling' : 'nextSibling']; } var position = $(obj).offset(); return [position.left, position.top]; }, /* Trigger custom callback of onClose. */ _triggerOnClose: function(inst) { var onClose = this._get(inst, 'onClose'); if (onClose) onClose.apply((inst.input ? inst.input[0] : null), [(inst.input ? inst.input.val() : ''), inst]); }, /* Hide the date picker from view. @param input element - the input field attached to the date picker */ _hideDatepicker: function(input) { var inst = this._curInst; if (!inst || (input && inst != $.data(input, PROP_NAME))) return; if (this._datepickerShowing) { var showAnim = this._get(inst, 'showAnim'); var duration = this._get(inst, 'duration'); var postProcess = function() { $.datepicker._tidyDialog(inst); this._curInst = null; }; if ($.effects && $.effects[showAnim]) inst.dpDiv.hide(showAnim, $.datepicker._get(inst, 'showOptions'), duration, postProcess); else inst.dpDiv[(showAnim == 'slideDown' ? 'slideUp' : (showAnim == 'fadeIn' ? 'fadeOut' : 'hide'))]((showAnim ? duration : null), postProcess); if (!showAnim) postProcess(); $.datepicker._triggerOnClose(inst); this._datepickerShowing = false; this._lastInput = null; if (this._inDialog) { this._dialogInput.css({ position: 'absolute', left: '0', top: '-100px' }); if ($.blockUI) { $.unblockUI(); $('body').append(this.dpDiv); } } this._inDialog = false; } }, /* Tidy up after a dialog display. */ _tidyDialog: function(inst) { inst.dpDiv.removeClass(this._dialogClass).unbind('.ui-datepicker-calendar'); }, /* Close date picker if clicked elsewhere. */ _checkExternalClick: function(event) { if (!$.datepicker._curInst) return; var $target = $(event.target); if ($target[0].id != $.datepicker._mainDivId && $target.parents('#' + $.datepicker._mainDivId).length == 0 && !$target.hasClass($.datepicker.markerClassName) && !$target.hasClass($.datepicker._triggerClass) && $.datepicker._datepickerShowing && !($.datepicker._inDialog && $.blockUI)) $.datepicker._hideDatepicker(); }, /* Adjust one of the date sub-fields. */ _adjustDate: function(id, offset, period) { var target = $(id); var inst = this._getInst(target[0]); if (this._isDisabledDatepicker(target[0])) { return; } this._adjustInstDate(inst, offset + (period == 'M' ? this._get(inst, 'showCurrentAtPos') : 0), // undo positioning period); this._updateDatepicker(inst); }, /* Action for current link. */ _gotoToday: function(id) { var target = $(id); var inst = this._getInst(target[0]); if (this._get(inst, 'gotoCurrent') && inst.currentDay) { inst.selectedDay = inst.currentDay; inst.drawMonth = inst.selectedMonth = inst.currentMonth; inst.drawYear = inst.selectedYear = inst.currentYear; } else { var date = new this.CDate();//[CC] inst.selectedDay = date.getDate(); inst.drawMonth = inst.selectedMonth = date.getMonth(); inst.drawYear = inst.selectedYear = date.getFullYear(); } this._notifyChange(inst); this._adjustDate(target); }, /* Action for selecting a new month/year. */ _selectMonthYear: function(id, select, period) { var target = $(id); var inst = this._getInst(target[0]); inst._selectingMonthYear = false; inst['selected' + (period == 'M' ? 'Month' : 'Year')] = inst['draw' + (period == 'M' ? 'Month' : 'Year')] = parseInt(select.options[select.selectedIndex].value,10); this._notifyChange(inst); this._adjustDate(target); }, /* Restore input focus after not changing month/year. */ _clickMonthYear: function(id) { var target = $(id); var inst = this._getInst(target[0]); if (inst.input && inst._selectingMonthYear) { setTimeout(function() { inst.input.focus(); }, 0); } inst._selectingMonthYear = !inst._selectingMonthYear; }, /* Action for selecting a day. */ _selectDay: function(id, month, year, td) { var target = $(id); if ($(td).hasClass(this._unselectableClass) || this._isDisabledDatepicker(target[0])) { return; } var inst = this._getInst(target[0]); inst.selectedDay = inst.currentDay = $('a', td).html(); inst.selectedMonth = inst.currentMonth = month; inst.selectedYear = inst.currentYear = year; this._selectDate(id, this._formatDate(inst, inst.currentDay, inst.currentMonth, inst.currentYear)); }, /* Erase the input field and hide the date picker. */ _clearDate: function(id) { var target = $(id); var inst = this._getInst(target[0]); this._selectDate(target, ''); }, /* Update the input field with the selected date. */ _selectDate: function(id, dateStr) { var target = $(id); var inst = this._getInst(target[0]); dateStr = (dateStr != null ? dateStr : this._formatDate(inst)); if (inst.input) inst.input.val(dateStr); this._updateAlternate(inst); var onSelect = this._get(inst, 'onSelect'); if (onSelect) onSelect.apply((inst.input ? inst.input[0] : null), [dateStr, inst]); // trigger custom callback else if (inst.input) inst.input.trigger('change'); // fire the change event if (inst.inline) this._updateDatepicker(inst); else { this._hideDatepicker(); this._lastInput = inst.input[0]; if (typeof(inst.input[0]) != 'object') inst.input.focus(); // restore focus this._lastInput = null; } }, /* Update any alternate field to synchronise with the main field. */ _updateAlternate: function(inst) { var altField = this._get(inst, 'altField'); if (altField) { // update alternate field too var altFormat = this._get(inst, 'altFormat') || this._get(inst, 'dateFormat'); var date = this._getDate(inst); var dateStr = this.formatDate(altFormat, date, this._getFormatConfig(inst)); $(altField).each(function() { $(this).val(dateStr); }); } }, /* Set as beforeShowDay function to prevent selection of weekends. @param date Date - the date to customise @return [boolean, string] - is this date selectable?, what is its CSS class? */ noWeekends: function(date) { var day = date.getDay(); return [(day > 0 && day < 6), '']; }, /* Set as calculateWeek to determine the week of the year based on the ISO 8601 definition. @param date Date - the date to get the week for @return number - the number of the week within the year that contains this date */ iso8601Week: function(date) { var checkDate = new Date(date.getTime()); // Find Thursday of this week starting on Monday checkDate.setDate(checkDate.getDate() + 4 - (checkDate.getDay() || 7)); var time = checkDate.getTime(); checkDate.setMonth(0); // Compare with Jan 1 checkDate.setDate(1); return Math.floor(Math.round((time - checkDate) / 86400000) / 7) + 1; }, /* Parse a string value into a date object. See formatDate below for the possible formats. @param format string - the expected format of the date @param value string - the date in the above format @param settings Object - attributes include: shortYearCutoff number - the cutoff year for determining the century (optional) dayNamesShort string[7] - abbreviated names of the days from Sunday (optional) dayNames string[7] - names of the days from Sunday (optional) monthNamesShort string[12] - abbreviated names of the months (optional) monthNames string[12] - names of the months (optional) @return Date - the extracted date value or null if value is blank */ parseDate: function (format, value, settings) { if (format == null || value == null) throw 'Invalid arguments'; value = (typeof value == 'object' ? value.toString() : value + ''); if (value == '') return null; var shortYearCutoff = (settings ? settings.shortYearCutoff : null) || this._defaults.shortYearCutoff; shortYearCutoff = (typeof shortYearCutoff != 'string' ? shortYearCutoff : new this.CDate().getFullYear() % 100 + parseInt(shortYearCutoff, 10));//[CC] var dayNamesShort = (settings ? settings.dayNamesShort : null) || this._defaults.dayNamesShort; var dayNames = (settings ? settings.dayNames : null) || this._defaults.dayNames; var monthNamesShort = (settings ? settings.monthNamesShort : null) || this._defaults.monthNamesShort; var monthNames = (settings ? settings.monthNames : null) || this._defaults.monthNames; var year = -1; var month = -1; var day = -1; var doy = -1; var literal = false; // Check whether a format character is doubled var lookAhead = function(match) { var matches = (iFormat + 1 < format.length && format.charAt(iFormat + 1) == match); if (matches) iFormat++; return matches; }; // Extract a number from the string value var getNumber = function(match) { var isDoubled = lookAhead(match); var size = (match == '@' ? 14 : (match == '!' ? 20 : (match == 'y' && isDoubled ? 4 : (match == 'o' ? 3 : 2)))); var digits = new RegExp('^\\d{1,' + size + '}'); var num = value.substring(iValue).match(digits); if (!num) throw 'Missing number at position ' + iValue; iValue += num[0].length; return parseInt(num[0], 10); }; // Extract a name from the string value and convert to an index var getName = function(match, shortNames, longNames) { var names = $.map(lookAhead(match) ? longNames : shortNames, function (v, k) { return [ [k, v] ]; }).sort(function (a, b) { return -(a[1].length - b[1].length); }); var index = -1; $.each(names, function (i, pair) { var name = pair[1]; if (value.substr(iValue, name.length).toLowerCase() == name.toLowerCase()) { index = pair[0]; iValue += name.length; return false; } }); if (index != -1) return index + 1; else throw 'Unknown name at position ' + iValue; }; // Confirm that a literal character matches the string value var checkLiteral = function() { if (value.charAt(iValue) != format.charAt(iFormat)) throw 'Unexpected literal at position ' + iValue; iValue++; }; var iValue = 0; for (var iFormat = 0; iFormat < format.length; iFormat++) { if (literal) if (format.charAt(iFormat) == "'" && !lookAhead("'")) literal = false; else checkLiteral(); else switch (format.charAt(iFormat)) { case 'd': day = getNumber('d'); break; case 'D': getName('D', dayNamesShort, dayNames); break; case 'o': doy = getNumber('o'); break; case 'm': month = getNumber('m'); break; case 'M': month = getName('M', monthNamesShort, monthNames); break; case 'y': year = getNumber('y'); break; case '@': var date = new this.CDate(getNumber('@'));//[CC] year = date.getFullYear(); month = date.getMonth() + 1; day = date.getDate(); break; case '!': var date = new Date((getNumber('!') - this._ticksTo1970) / 10000); year = date.getFullYear(); month = date.getMonth() + 1; day = date.getDate(); break; case "'": if (lookAhead("'")) checkLiteral(); else literal = true; break; default: checkLiteral(); } } if (iValue < value.length){ throw "Extra/unparsed characters found in date: " + value.substring(iValue); } if (year == -1) year = new this.CDate().getFullYear();//[CC] else if (year < 100) year += new this.CDate().getFullYear() - new this.CDate().getFullYear() % 100 +//[CC] (year <= shortYearCutoff ? 0 : -100); if (doy > -1) { month = 1; day = doy; do { var dim = this._getDaysInMonth(year, month - 1); if (day <= dim) break; month++; day -= dim; } while (true); } var date = this._daylightSavingAdjust(new this.CDate(year, month - 1, day));//[CC] if (date.getFullYear() != year || date.getMonth() + 1 != month || date.getDate() != day) throw 'Invalid date'; // E.g. 31/02/00 return date; }, /* Standard date formats. */ ATOM: 'yy-mm-dd', // RFC 3339 (ISO 8601) COOKIE: 'D, dd M yy', ISO_8601: 'yy-mm-dd', RFC_822: 'D, d M y', RFC_850: 'DD, dd-M-y', RFC_1036: 'D, d M y', RFC_1123: 'D, d M yy', RFC_2822: 'D, d M yy', RSS: 'D, d M y', // RFC 822 TICKS: '!', TIMESTAMP: '@', W3C: 'yy-mm-dd', // ISO 8601 _ticksTo1970: (((1970 - 1) * 365 + Math.floor(1970 / 4) - Math.floor(1970 / 100) + Math.floor(1970 / 400)) * 24 * 60 * 60 * 10000000), /* Format a date object into a string value. The format can be combinations of the following: d - day of month (no leading zero) dd - day of month (two digit) o - day of year (no leading zeros) oo - day of year (three digit) D - day name short DD - day name long m - month of year (no leading zero) mm - month of year (two digit) M - month name short MM - month name long y - year (two digit) yy - year (four digit) @ - Unix timestamp (ms since 01/01/1970) ! - Windows ticks (100ns since 01/01/0001) '...' - literal text '' - single quote @param format string - the desired format of the date @param date Date - the date value to format @param settings Object - attributes include: dayNamesShort string[7] - abbreviated names of the days from Sunday (optional) dayNames string[7] - names of the days from Sunday (optional) monthNamesShort string[12] - abbreviated names of the months (optional) monthNames string[12] - names of the months (optional) @return string - the date in the above format */ formatDate: function (format, date, settings) { if (!date) return ''; var dayNamesShort = (settings ? settings.dayNamesShort : null) || this._defaults.dayNamesShort; var dayNames = (settings ? settings.dayNames : null) || this._defaults.dayNames; var monthNamesShort = (settings ? settings.monthNamesShort : null) || this._defaults.monthNamesShort; var monthNames = (settings ? settings.monthNames : null) || this._defaults.monthNames; // Check whether a format character is doubled var lookAhead = function(match) { var matches = (iFormat + 1 < format.length && format.charAt(iFormat + 1) == match); if (matches) iFormat++; return matches; }; // Format a number, with leading zero if necessary var formatNumber = function(match, value, len) { var num = '' + value; if (lookAhead(match)) while (num.length < len) num = '0' + num; return num; }; // Format a name, short or long as requested var formatName = function(match, value, shortNames, longNames) { return (lookAhead(match) ? longNames[value] : shortNames[value]); }; var output = ''; var literal = false; if (date) for (var iFormat = 0; iFormat < format.length; iFormat++) { if (literal) if (format.charAt(iFormat) == "'" && !lookAhead("'")) literal = false; else output += format.charAt(iFormat); else switch (format.charAt(iFormat)) { case 'd': output += formatNumber('d', date.getDate(), 2); break; case 'D': output += formatName('D', date.getDay(), dayNamesShort, dayNames); break; case 'o': output += formatNumber('o', Math.round((new this.CDate(date.getFullYear(), date.getMonth(), date.getDate()).getTime() - new this.CDate(date.getFullYear(), 0, 0).getTime()) / 86400000), 3);//[CC] break; case 'm': output += formatNumber('m', date.getMonth() + 1, 2); break; case 'M': output += formatName('M', date.getMonth(), monthNamesShort, monthNames); break; case 'y': output += (lookAhead('y') ? date.getFullYear() : (date.getYear() % 100 < 10 ? '0' : '') + date.getYear() % 100); break; case '@': output += date.getTime(); break; case '!': output += date.getTime() * 10000 + this._ticksTo1970; break; case "'": if (lookAhead("'")) output += "'"; else literal = true; break; default: output += format.charAt(iFormat); } } return output; }, /* Extract all possible characters from the date format. */ _possibleChars: function (format) { var chars = ''; var literal = false; // Check whether a format character is doubled var lookAhead = function(match) { var matches = (iFormat + 1 < format.length && format.charAt(iFormat + 1) == match); if (matches) iFormat++; return matches; }; for (var iFormat = 0; iFormat < format.length; iFormat++) if (literal) if (format.charAt(iFormat) == "'" && !lookAhead("'")) literal = false; else chars += format.charAt(iFormat); else switch (format.charAt(iFormat)) { case 'd': case 'm': case 'y': case '@': chars += '0123456789'; break; case 'D': case 'M': return null; // Accept anything case "'": if (lookAhead("'")) chars += "'"; else literal = true; break; default: chars += format.charAt(iFormat); } return chars; }, /* Get a setting value, defaulting if necessary. */ _get: function(inst, name) { return inst.settings[name] !== undefined ? inst.settings[name] : this._defaults[name]; }, /* Parse existing date and initialise date picker. */ _setDateFromField: function(inst, noDefault) { if (inst.input.val() == inst.lastVal) { return; } var dateFormat = this._get(inst, 'dateFormat'); var dates = inst.lastVal = inst.input ? inst.input.val() : null; var date, defaultDate; date = defaultDate = this._getDefaultDate(inst); var settings = this._getFormatConfig(inst); try { date = this.parseDate(dateFormat, dates, settings) || defaultDate; } catch (event) { this.log(event); dates = (noDefault ? '' : dates); } inst.selectedDay = date.getDate(); inst.drawMonth = inst.selectedMonth = date.getMonth(); inst.drawYear = inst.selectedYear = date.getFullYear(); inst.currentDay = (dates ? date.getDate() : 0); inst.currentMonth = (dates ? date.getMonth() : 0); inst.currentYear = (dates ? date.getFullYear() : 0); this._adjustInstDate(inst); }, /* Retrieve the default date shown on opening. */ _getDefaultDate: function(inst) { this.CDate = this._get(inst, 'calendar');//[CC] return this._restrictMinMax(inst, this._determineDate(inst, this._get(inst, 'defaultDate'), new this.CDate()));//[CC] }, /* A date may be specified as an exact value or a relative one. */ _determineDate: function(inst, date, defaultDate) { var Date = this.CDate;//[CC] var offsetNumeric = function(offset) { var date = new Date(); date.setDate(date.getDate() + offset); return date; }; var offsetString = function(offset) { try { return $.datepicker.parseDate($.datepicker._get(inst, 'dateFormat'), offset, $.datepicker._getFormatConfig(inst)); } catch (e) { // Ignore } var date = (offset.toLowerCase().match(/^c/) ? $.datepicker._getDate(inst) : null) || new Date(); var year = date.getFullYear(); var month = date.getMonth(); var day = date.getDate(); var pattern = /([+-]?[0-9]+)\s*(d|D|w|W|m|M|y|Y)?/g; var matches = pattern.exec(offset); while (matches) { switch (matches[2] || 'd') { case 'd' : case 'D' : day += parseInt(matches[1],10); break; case 'w' : case 'W' : day += parseInt(matches[1],10) * 7; break; case 'm' : case 'M' : month += parseInt(matches[1],10); day = Math.min(day, $.datepicker._getDaysInMonth(year, month)); break; case 'y': case 'Y' : year += parseInt(matches[1],10); day = Math.min(day, $.datepicker._getDaysInMonth(year, month)); break; } matches = pattern.exec(offset); } return new Date(year, month, day); }; var newDate = (date == null || date === '' ? defaultDate : (typeof date == 'string' ? offsetString(date) : (typeof date == 'number' ? (isNaN(date) ? defaultDate : offsetNumeric(date)) : new Date(date.getTime())))); newDate = (newDate && newDate.toString() == 'Invalid Date' ? defaultDate : newDate); if (newDate) { newDate.setHours(0); newDate.setMinutes(0); newDate.setSeconds(0); newDate.setMilliseconds(0); } return this._daylightSavingAdjust(newDate); }, /* Handle switch to/from daylight saving. Hours may be non-zero on daylight saving cut-over: > 12 when midnight changeover, but then cannot generate midnight datetime, so jump to 1AM, otherwise reset. @param date (Date) the date to check @return (Date) the corrected date */ _daylightSavingAdjust: function(date) { if (!date) return null; date.setHours(date.getHours() > 12 ? date.getHours() + 2 : 0); return date; }, /* Set the date(s) directly. */ _setDate: function(inst, date, noChange) { var clear = !date; var origMonth = inst.selectedMonth; var origYear = inst.selectedYear; this.CDate = this._get(inst, 'calendar');//[CC] var newDate = this._restrictMinMax(inst, this._determineDate(inst, date, new this.CDate()));//[CC] inst.selectedDay = inst.currentDay = newDate.getDate(); inst.drawMonth = inst.selectedMonth = inst.currentMonth = newDate.getMonth(); inst.drawYear = inst.selectedYear = inst.currentYear = newDate.getFullYear(); if ((origMonth != inst.selectedMonth || origYear != inst.selectedYear) && !noChange) this._notifyChange(inst); this._adjustInstDate(inst); if (inst.input) { inst.input.val(clear ? '' : this._formatDate(inst)); } }, /* Retrieve the date(s) directly. */ _getDate: function(inst) { this.CDate = this._get(inst, 'calendar');//[CC] var startDate = (!inst.currentYear || (inst.input && inst.input.val() == '') ? null : this._daylightSavingAdjust(new this.CDate(//[CC] inst.currentYear, inst.currentMonth, inst.currentDay))); return startDate; }, /* Generate the HTML for the current state of the date picker. */ _generateHTML: function(inst) { var today = new this.CDate();//[CC] today = this._daylightSavingAdjust( new this.CDate(today.getFullYear(), today.getMonth(), today.getDate())); // clear time //[CC] var isRTL = this._get(inst, 'isRTL'); var showButtonPanel = this._get(inst, 'showButtonPanel'); var hideIfNoPrevNext = this._get(inst, 'hideIfNoPrevNext'); var navigationAsDateFormat = this._get(inst, 'navigationAsDateFormat'); var numMonths = this._getNumberOfMonths(inst); var showCurrentAtPos = this._get(inst, 'showCurrentAtPos'); var stepMonths = this._get(inst, 'stepMonths'); var isMultiMonth = (numMonths[0] != 1 || numMonths[1] != 1); var currentDate = this._daylightSavingAdjust((!inst.currentDay ? new Date(9999, 9, 9) : new this.CDate(inst.currentYear, inst.currentMonth, inst.currentDay)));//[CC] var minDate = this._getMinMaxDate(inst, 'min'); var maxDate = this._getMinMaxDate(inst, 'max'); var drawMonth = inst.drawMonth - showCurrentAtPos; var drawYear = inst.drawYear; if (drawMonth < 0) { drawMonth += 12; drawYear--; } if (maxDate) { var maxDraw = this._daylightSavingAdjust(new this.CDate(maxDate.getFullYear(),//[CC] maxDate.getMonth() - (numMonths[0] * numMonths[1]) + 1, maxDate.getDate())); maxDraw = (minDate && this._compareDate(maxDraw, '<', minDate) ? minDate : maxDraw); while (this._daylightSavingAdjust(new this.CDate(drawYear, drawMonth, 1)) > maxDraw) {//[CC] drawMonth--; if (drawMonth < 0) { drawMonth = 11; drawYear--; } } } inst.drawMonth = drawMonth; inst.drawYear = drawYear; var prevText = this._get(inst, 'prevText'); prevText = (!navigationAsDateFormat ? prevText : this.formatDate(prevText, this._daylightSavingAdjust(new this.CDate(drawYear, drawMonth - stepMonths, 1)),//[CC] this._getFormatConfig(inst))); var prev = (this._canAdjustMonth(inst, -1, drawYear, drawMonth) ? '' + prevText + '' : (hideIfNoPrevNext ? '' : '' + prevText + ''));//[CC]: direction:ltr var nextText = this._get(inst, 'nextText'); nextText = (!navigationAsDateFormat ? nextText : this.formatDate(nextText, this._daylightSavingAdjust(new this.CDate(drawYear, drawMonth + stepMonths, 1)),//[CC] this._getFormatConfig(inst))); var next = (this._canAdjustMonth(inst, +1, drawYear, drawMonth) ? '' + nextText + '' : (hideIfNoPrevNext ? '' : '' + nextText + ''));//[CC]: direction:ltr var currentText = this._get(inst, 'currentText'); var gotoDate = (this._get(inst, 'gotoCurrent') && inst.currentDay ? currentDate : today); currentText = (!navigationAsDateFormat ? currentText : this.formatDate(currentText, gotoDate, this._getFormatConfig(inst))); var controls = (!inst.inline ? '' : ''); var buttonPanel = (showButtonPanel) ? '
' + (isRTL ? controls : '') + (this._isInRange(inst, gotoDate) ? '' : '') + (isRTL ? '' : controls) + '
' : ''; var firstDay = parseInt(this._get(inst, 'firstDay'),10); firstDay = (isNaN(firstDay) ? 0 : firstDay); var showWeek = this._get(inst, 'showWeek'); var dayNames = this._get(inst, 'dayNames'); var dayNamesShort = this._get(inst, 'dayNamesShort'); var dayNamesMin = this._get(inst, 'dayNamesMin'); var monthNames = this._get(inst, 'monthNames'); var monthNamesShort = this._get(inst, 'monthNamesShort'); var beforeShowDay = this._get(inst, 'beforeShowDay'); var showOtherMonths = this._get(inst, 'showOtherMonths'); var selectOtherMonths = this._get(inst, 'selectOtherMonths'); var calculateWeek = this._get(inst, 'calculateWeek') || this.iso8601Week; var defaultDate = this._getDefaultDate(inst); var html = ''; for (var row = 0; row < numMonths[0]; row++) { var group = ''; this.maxRows = 4; for (var col = 0; col < numMonths[1]; col++) { var selectedDate = this._daylightSavingAdjust(new this.CDate(drawYear, drawMonth, inst.selectedDay));//[CC] var cornerClass = ' ui-corner-all'; var calender = ''; if (isMultiMonth) { calender += '
'; } calender += '
' + (/all|left/.test(cornerClass) && row == 0 ? (isRTL ? next : prev) : '') + (/all|right/.test(cornerClass) && row == 0 ? (isRTL ? prev : next) : '') + this._generateMonthYearHeader(inst, drawMonth, drawYear, minDate, maxDate, row > 0 || col > 0, monthNames, monthNamesShort) + // draw month headers '
' + ''; var thead = (showWeek ? '' : ''); for (var dow = 0; dow < 7; dow++) { // days of the week var day = (dow + firstDay) % 7; thead += '= 5 ? ' class="ui-datepicker-week-end"' : '') + '>' + '' + dayNamesMin[day] + ''; } calender += thead + ''; var daysInMonth = this._getDaysInMonth(drawYear, drawMonth); if (drawYear == inst.selectedYear && drawMonth == inst.selectedMonth) inst.selectedDay = Math.min(inst.selectedDay, daysInMonth); var leadDays = (this._getFirstDayOfMonth(drawYear, drawMonth) - firstDay + 7) % 7; var curRows = Math.ceil((leadDays + daysInMonth) / 7); // calculate the number of rows to generate var numRows = (isMultiMonth ? this.maxRows > curRows ? this.maxRows : curRows : curRows); //If multiple months, use the higher number of rows (see #7043) this.maxRows = numRows; var printDate = this._daylightSavingAdjust(new this.CDate(drawYear, drawMonth, 1 - leadDays));//[CC] for (var dRow = 0; dRow < numRows; dRow++) { // create date picker rows calender += ''; var tbody = (!showWeek ? '' : ''); for (var dow = 0; dow < 7; dow++) { // create date picker days var daySettings = (beforeShowDay ? beforeShowDay.apply((inst.input ? inst.input[0] : null), [printDate]) : [true, '']); var otherMonth = (printDate.getMonth() != drawMonth); var unselectable = (otherMonth && !selectOtherMonths) || !daySettings[0] || ((minDate && this._compareDate(printDate, '<', minDate)) || (maxDate && this._compareDate(printDate, '>', maxDate)));//[CC] tbody += ''; // display selectable date printDate.setDate(printDate.getDate() + 1); printDate = this._daylightSavingAdjust(printDate); } calender += tbody + ''; } drawMonth++; if (drawMonth > 11) { drawMonth = 0; drawYear++; } calender += '
' + this._get(inst, 'weekHeader') + '
' + this._get(inst, 'calculateWeek')(printDate) + '' + // actions (otherMonth && !showOtherMonths ? ' ' : // display for other months (unselectable ? '' + printDate.getDate() + '' : '' + printDate.getDate() + '')) + '
' + (isMultiMonth ? '
' + ((numMonths[0] > 0 && col == numMonths[1]-1) ? '
' : '') : ''); group += calender; } html += group; } html += buttonPanel + ($.browser.msie && parseInt($.browser.version,10) < 7 && !inst.inline ? '' : ''); inst._keyEvent = false; return html; }, /* Generate the month and year header. */ _generateMonthYearHeader: function(inst, drawMonth, drawYear, minDate, maxDate, secondary, monthNames, monthNamesShort) { var changeMonth = this._get(inst, 'changeMonth'); var changeYear = this._get(inst, 'changeYear'); var showMonthAfterYear = this._get(inst, 'showMonthAfterYear'); var html = '
'; var monthHtml = ''; // month selection if (secondary || !changeMonth) monthHtml += '' + monthNames[drawMonth] + ''; else { var inMinYear = (minDate && minDate.getFullYear() == drawYear); var inMaxYear = (maxDate && maxDate.getFullYear() == drawYear); monthHtml += ''; } if (!showMonthAfterYear) html += monthHtml + (secondary || !(changeMonth && changeYear) ? ' ' : ''); // year selection if ( !inst.yearshtml ) { inst.yearshtml = ''; if (secondary || !changeYear) html += '' + drawYear + ''; else { // determine range of years to display var years = this._get(inst, 'yearRange').split(':'); var thisYear = new this.CDate().getFullYear();//[CC] var determineYear = function(value) { var year = (value.match(/c[+-].*/) ? drawYear + parseInt(value.substring(1), 10) : (value.match(/[+-].*/) ? thisYear + parseInt(value, 10) : parseInt(value, 10))); return (isNaN(year) ? thisYear : year); }; var year = determineYear(years[0]); var endYear = Math.max(year, determineYear(years[1] || '')); year = (minDate ? Math.max(year, minDate.getFullYear()) : year); endYear = (maxDate ? Math.min(endYear, maxDate.getFullYear()) : endYear); inst.yearshtml += ''; html += inst.yearshtml; inst.yearshtml = null; } } html += this._get(inst, 'yearSuffix'); if (showMonthAfterYear) html += (secondary || !(changeMonth && changeYear) ? ' ' : '') + monthHtml; html += '
'; // Close datepicker_header return html; }, /* Adjust one of the date sub-fields. */ _adjustInstDate: function(inst, offset, period) { var year = inst.drawYear + (period == 'Y' ? offset : 0); var month = inst.drawMonth + (period == 'M' ? offset : 0); var day = Math.min(inst.selectedDay, this._getDaysInMonth(year, month)) + (period == 'D' ? offset : 0); var date = this._restrictMinMax(inst, this._daylightSavingAdjust(new this.CDate(year, month, day)));//[CC] inst.selectedDay = date.getDate(); inst.drawMonth = inst.selectedMonth = date.getMonth(); inst.drawYear = inst.selectedYear = date.getFullYear(); if (period == 'M' || period == 'Y') this._notifyChange(inst); }, /* Ensure a date is within any min/max bounds. */ _restrictMinMax: function(inst, date) { var minDate = this._getMinMaxDate(inst, 'min'); var maxDate = this._getMinMaxDate(inst, 'max'); var newDate = (minDate && this._compareDate(date, '<', minDate)) ? minDate : date;//[CC] newDate = (maxDate && this._compareDate(newDate, '>', maxDate)) ? maxDate : newDate;//[CC] return newDate; }, /* Notify change of month/year. */ _notifyChange: function(inst) { var onChange = this._get(inst, 'onChangeMonthYear'); if (onChange) onChange.apply((inst.input ? inst.input[0] : null), [inst.selectedYear, inst.selectedMonth + 1, inst]); }, /* Determine the number of months to show. */ _getNumberOfMonths: function(inst) { var numMonths = this._get(inst, 'numberOfMonths'); return (numMonths == null ? [1, 1] : (typeof numMonths == 'number' ? [1, numMonths] : numMonths)); }, /* Determine the current maximum date - ensure no time components are set. */ _getMinMaxDate: function(inst, minMax) { return this._determineDate(inst, this._get(inst, minMax + 'Date'), null); }, /* Find the number of days in a given month. */ _getDaysInMonth: function(year, month) { return 32 - this._daylightSavingAdjust(new this.CDate(year, month, 32)).getDate();//[CC] }, /* Find the day of the week of the first of a month. */ _getFirstDayOfMonth: function(year, month) { return new this.CDate(year, month, 1).getDay();//[CC] }, /* Determines if we should allow a "next/prev" month display change. */ _canAdjustMonth: function(inst, offset, curYear, curMonth) { var numMonths = this._getNumberOfMonths(inst); var date = this._daylightSavingAdjust(new this.CDate(curYear,//[CC] curMonth + (offset < 0 ? offset : numMonths[0] * numMonths[1]), 1)); if (offset < 0) date.setDate(this._getDaysInMonth(date.getFullYear(), date.getMonth())); return this._isInRange(inst, date); }, /* Is the given date in the accepted range? */ _isInRange: function(inst, date) { var minDate = this._getMinMaxDate(inst, 'min'); var maxDate = this._getMinMaxDate(inst, 'max'); return ((!minDate || date.getTime() >= minDate.getTime()) && (!maxDate || date.getTime() <= maxDate.getTime())); }, /* Provide the configuration settings for formatting/parsing. */ _getFormatConfig: function(inst) { var shortYearCutoff = this._get(inst, 'shortYearCutoff'); this.CDate = this._get(inst, 'calendar');//[CC] shortYearCutoff = (typeof shortYearCutoff != 'string' ? shortYearCutoff : new this.CDate().getFullYear() % 100 + parseInt(shortYearCutoff, 10));//[CC] return {shortYearCutoff: shortYearCutoff, dayNamesShort: this._get(inst, 'dayNamesShort'), dayNames: this._get(inst, 'dayNames'), monthNamesShort: this._get(inst, 'monthNamesShort'), monthNames: this._get(inst, 'monthNames')}; }, /* Format the given date for display. */ _formatDate: function(inst, day, month, year) { if (!day) { inst.currentDay = inst.selectedDay; inst.currentMonth = inst.selectedMonth; inst.currentYear = inst.selectedYear; } var date = (day ? (typeof day == 'object' ? day : this._daylightSavingAdjust(new this.CDate(year, month, day))) ://[CC] this._daylightSavingAdjust(new this.CDate(inst.currentYear, inst.currentMonth, inst.currentDay)));//[CC] return this.formatDate(this._get(inst, 'dateFormat'), date, this._getFormatConfig(inst)); },//[CC] /* [CC]Compare two dates */ _compareDate: function(d1, op, d2) {//[CC] if(d1 && d2) {//[CC] if(d1.getGregorianDate) d1 = d1.getGregorianDate();//[CC] if(d2.getGregorianDate) d2 = d2.getGregorianDate();//[CC] if(op == '<') return d1 < d2;//[CC] return d1 > d2;//[CC] } else {//[CC] return null;//[CC] }//[CC] }//[CC] }); /* * Bind hover events for datepicker elements. * Done via delegate so the binding only occurs once in the lifetime of the parent div. * Global instActive, set by _updateDatepicker allows the handlers to find their way back to the active picker. */ function bindHover(dpDiv) { var selector = 'button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a'; return dpDiv.bind('mouseout', function(event) { var elem = $( event.target ).closest( selector ); if ( !elem.length ) { return; } elem.removeClass( "ui-state-hover ui-datepicker-prev-hover ui-datepicker-next-hover" ); }) .bind('mouseover', function(event) { var elem = $( event.target ).closest( selector ); if ($.datepicker._isDisabledDatepicker( instActive.inline ? dpDiv.parent()[0] : instActive.input[0]) || !elem.length ) { return; } elem.parents('.ui-datepicker-calendar').find('a').removeClass('ui-state-hover'); elem.addClass('ui-state-hover'); if (elem.hasClass('ui-datepicker-prev')) elem.addClass('ui-datepicker-prev-hover'); if (elem.hasClass('ui-datepicker-next')) elem.addClass('ui-datepicker-next-hover'); }); } /* jQuery extend now ignores nulls! */ function extendRemove(target, props) { $.extend(target, props); for (var name in props) if (props[name] == null || props[name] == undefined) target[name] = props[name]; return target; }; /* Determine whether an object is an array. */ function isArray(a) { return (a && (($.browser.safari && typeof a == 'object' && a.length) || (a.constructor && a.constructor.toString().match(/\Array\(\)/)))); }; /* Invoke the datepicker functionality. @param options string - a command, optionally followed by additional parameters or Object - settings for attaching new datepicker functionality @return jQuery object */ $.fn.datepicker = function(options){ /* Verify an empty collection wasn't passed - Fixes #6976 */ if ( !this.length ) { return this; } /* Initialise the date picker. */ if (!$.datepicker.initialized) { $(document).mousedown($.datepicker._checkExternalClick). find('body').append($.datepicker.dpDiv); $.datepicker.initialized = true; } var otherArgs = Array.prototype.slice.call(arguments, 1); if (typeof options == 'string' && (options == 'isDisabled' || options == 'getDate' || options == 'widget')) return $.datepicker['_' + options + 'Datepicker']. apply($.datepicker, [this[0]].concat(otherArgs)); if (options == 'option' && arguments.length == 2 && typeof arguments[1] == 'string') return $.datepicker['_' + options + 'Datepicker']. apply($.datepicker, [this[0]].concat(otherArgs)); return this.each(function() { typeof options == 'string' ? $.datepicker['_' + options + 'Datepicker']. apply($.datepicker, [this].concat(otherArgs)) : $.datepicker._attachDatepicker(this, options); }); }; $.datepicker = new Datepicker(); // singleton instance $.datepicker.initialized = false; $.datepicker.uuid = new Date().getTime(); $.datepicker.version = "1.8.14"; // Workaround for #4055 // Add another global to avoid noConflict issues with inline event handlers window['DP_jQuery_' + dpuuid] = $; })(jQuery); // Mahdi Hasheminezhad. email: hasheminezhad at gmail dot com (http://hasheminezhad.com) jQuery(function($){ $.datepicker.regional['ar'] = { calendar: HijriDate, closeText: 'إغلاق', prevText: 'السابق', nextText: 'التالي', currentText: 'اليوم', monthNames: ['محرّم', 'صفر', 'ربيع الأول', 'ربيع الثاني', 'جمادى الأولى', 'جمادى الآخرة', 'رجب', 'شعبان', 'رمضان', 'شوال', 'ذو القعدة', 'ذو الحجة'], monthNamesShort: ['محرّم', 'صفر', 'ربيع الأول', 'ربيع الثاني', 'جمادى الأولى', 'جمادى الآخرة', 'رجب', 'شعبان', 'رمضان', 'شوال', 'ذو القعدة', 'ذو الحجة'], dayNames: ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'], dayNamesShort: ['أحد', 'اثنين', 'ثلاثاء', 'أربعاء', 'خميس', 'جمعة', 'سبت'], dayNamesMin: ['أ', 'ا', 'ث', 'أ', 'خ', 'ج', 'س'], weekHeader: 'س', dateFormat: 'dd/mm/yy', firstDay: 6, isRTL: true, showMonthAfterYear: false, yearSuffix: '', calculateWeek: function(date) { var checkDate = new HijriDate(date.getFullYear(), date.getMonth(), date.getDate() + (date.getDay() || 7) - 3); return Math.floor(Math.round((checkDate.getTime() - new HijriDate(checkDate.getFullYear(), 0, 1).getTime()) / 86400000) / 7) + 1; }}; $.datepicker.setDefaults($.datepicker.regional['ar']); }); function HijriDate(p0, p1, p2) { var gregorianDate; var hijriDate; if (!isNaN(parseInt(p0)) && !isNaN(parseInt(p1)) && !isNaN(parseInt(p2))) { var g = hijri_to_gregorian([parseInt(p0, 10), parseInt(p1, 10), parseInt(p2, 10)]); setFullDate(new Date(g[0], g[1], g[2])); } else { setFullDate(p0); } function hijri_to_gregorian(d) { var gregorian = jd_to_gregorian(islamic_to_jd(d[0], d[1] + 1, d[2])); gregorian[1]--; return gregorian; } function gregorian_to_hijri(d) { var hijri = jd_to_islamic(gregorian_to_jd(d[0], d[1] + 1, d[2])); hijri[1]--; return hijri; } function setFullDate(date) { if (date && date.getGregorianDate) date = date.getGregorianDate(); gregorianDate = new Date(date); gregorianDate.setHours(gregorianDate.getHours() > 12 ? gregorianDate.getHours() + 2 : 0) if (!gregorianDate || gregorianDate == 'Invalid Date' || isNaN(gregorianDate || !gregorianDate.getDate())) { gregorianDate = new Date(); } hijriDate = gregorian_to_hijri([ gregorianDate.getFullYear(), gregorianDate.getMonth(), gregorianDate.getDate()]); return this; } this.getGregorianDate = function() { return gregorianDate; } this.setFullDate = setFullDate; this.setMonth = function(e) { hijriDate[1] = e; var g = hijri_to_gregorian(hijriDate); gregorianDate = new Date(g[0], g[1], g[2]); hijriDate = gregorian_to_hijri([g[0], g[1], g[2]]); } this.setDate = function(e) { hijriDate[2] = e; var g = hijri_to_gregorian(hijriDate); gregorianDate = new Date(g[0], g[1], g[2]); hijriDate = gregorian_to_hijri([g[0], g[1], g[2]]); }; this.getFullYear = function() { return hijriDate[0]; }; this.getMonth = function() { return hijriDate[1]; }; this.getDate = function() { return hijriDate[2]; }; this.toString = function() { return hijriDate.join(',').toString(); }; this.getDay = function() { return gregorianDate.getDay(); }; this.getHours = function() { return gregorianDate.getHours(); }; this.getMinutes = function() { return gregorianDate.getMinutes(); }; this.getSeconds = function() { return gregorianDate.getSeconds(); }; this.getTime = function() { return gregorianDate.getTime(); }; this.getTimeZoneOffset = function() { return gregorianDate.getTimeZoneOffset(); }; this.getYear = function() { return hijriDate[0] % 100; }; this.setHours = function(e) { gregorianDate.setHours(e) }; this.setMinutes = function(e) { gregorianDate.setMinutes(e) }; this.setSeconds = function(e) { gregorianDate.setSeconds(e) }; this.setMilliseconds = function(e) { gregorianDate.setMilliseconds(e) }; } // Mahdi Hasheminezhad. email: hasheminezhad at gmail dot com (http://hasheminezhad.com) jQuery(function($){ $.datepicker.regional['fa'] = { calendar: JalaliDate, closeText: 'بستن', prevText: 'قبل', nextText: 'بعد', currentText: 'امروز', monthNames: ['فروردین','اردیبهشت','خرداد','تیر','مرداد','شهریور','مهر','آبان','آذر','دی','بهمن','اسفند'], monthNamesShort: ['فروردین','اردیبهشت','خرداد','تیر','مرداد','شهریور','مهر','آبان','آذر','دی','بهمن','اسفند'], dayNames: ['یکشنبه', 'دوشنبه', 'سه شنبه', 'چهارشنبه', 'پنجشنبه', 'جمعه', 'شنبه'], dayNamesShort: ['یک', 'دو', 'سه', 'چهار', 'پنج', 'جمعه', 'شنبه'], dayNamesMin: ['ی','د','س','چ','پ','ج','ش'], weekHeader: 'ه', dateFormat: 'dd/mm/yy', firstDay: 6, isRTL: true, showMonthAfterYear: false, yearSuffix: '', calculateWeek: function(date) { var checkDate = new JalaliDate(date.getFullYear(), date.getMonth(), date.getDate() + (date.getDay() || 7) - 3); return Math.floor(Math.round((checkDate.getTime() - new JalaliDate(checkDate.getFullYear(), 0, 1).getTime()) / 86400000) / 7) + 1; }}; $.datepicker.setDefaults($.datepicker.regional['fa']); }); function JalaliDate(p0, p1, p2) { var gregorianDate; var jalaliDate; if (!isNaN(parseInt(p0)) && !isNaN(parseInt(p1)) && !isNaN(parseInt(p2))) { var g = jalali_to_gregorian([parseInt(p0, 10), parseInt(p1, 10), parseInt(p2, 10)]); setFullDate(new Date(g[0], g[1], g[2])); } else { setFullDate(p0); } function jalali_to_gregorian(d) { var adjustDay = 0; if(d[1]<0){ adjustDay = leap_persian(d[0]-1)? 30: 29; d[1]++; } var gregorian = jd_to_gregorian(persian_to_jd(d[0], d[1] + 1, d[2])-adjustDay); gregorian[1]--; return gregorian; } function gregorian_to_jalali(d) { var jalali = jd_to_persian(gregorian_to_jd(d[0], d[1] + 1, d[2])); jalali[1]--; return jalali; } function setFullDate(date) { if (date && date.getGregorianDate) date = date.getGregorianDate(); gregorianDate = new Date(date); gregorianDate.setHours(gregorianDate.getHours() > 12 ? gregorianDate.getHours() + 2 : 0) if (!gregorianDate || gregorianDate == 'Invalid Date' || isNaN(gregorianDate || !gregorianDate.getDate())) { gregorianDate = new Date(); } jalaliDate = gregorian_to_jalali([ gregorianDate.getFullYear(), gregorianDate.getMonth(), gregorianDate.getDate()]); return this; } this.getGregorianDate = function() { return gregorianDate; } this.setFullDate = setFullDate; this.setMonth = function(e) { jalaliDate[1] = e; var g = jalali_to_gregorian(jalaliDate); gregorianDate = new Date(g[0], g[1], g[2]); jalaliDate = gregorian_to_jalali([g[0], g[1], g[2]]); } this.setDate = function(e) { jalaliDate[2] = e; var g = jalali_to_gregorian(jalaliDate); gregorianDate = new Date(g[0], g[1], g[2]); jalaliDate = gregorian_to_jalali([g[0], g[1], g[2]]); }; this.getFullYear = function() { return jalaliDate[0]; }; this.getMonth = function() { return jalaliDate[1]; }; this.getDate = function() { return jalaliDate[2]; }; this.toString = function() { return jalaliDate.join(',').toString(); }; this.getDay = function() { return gregorianDate.getDay(); }; this.getHours = function() { return gregorianDate.getHours(); }; this.getMinutes = function() { return gregorianDate.getMinutes(); }; this.getSeconds = function() { return gregorianDate.getSeconds(); }; this.getTime = function() { return gregorianDate.getTime(); }; this.getTimeZoneOffset = function() { return gregorianDate.getTimeZoneOffset(); }; this.getYear = function() { return jalaliDate[0] % 100; }; this.setHours = function(e) { gregorianDate.setHours(e) }; this.setMinutes = function(e) { gregorianDate.setMinutes(e) }; this.setSeconds = function(e) { gregorianDate.setSeconds(e) }; this.setMilliseconds = function(e) { gregorianDate.setMilliseconds(e) }; } ////////Select date from Calendar (function ($) { var defaults = { langType: 'fa',// en || fa ShowDateInBothLanguage: false, showButtonPanel: false, numberOfMonths: 1, changeMonthAllow: true, changeYearAllow: true, SetDate: null, maxDate: null, minDate: -0, yearRange: '-8:+4', dateFormat: "yy/mm/dd", isDependenceDates: false, switchBtn: true, fullWidth_of_inputs: false, //autoclose: false, showAllMonthsinList: true, align2thCalendarWith2thInput:false, positionSet: true, customClass: "", openInSameLocation: false, customScroll: false, //need mCustomScrollbar plugin monthNumberCustom: { enable: false, monthAccount: 9 }, multiDatesPick: { enable: false, altField: '' }, fillHidden: { enable: true, outPut: 'fa', //en | Dependent_On_SelectedDate | fa customDateFormat1: false, customDateFormat2: false, PickDate_Hidden_val: null, PickDate2_Hidden_val: null, InputDate_Format_FromHidden: 'YYYY MM DD' } }; $.fn.pickDate = function (options) { var settings = $.extend({}, defaults, options); if (this.length == 0) { return this; } // support mutltiple elements if (this.length > 1) { this.each(function () { $(this).pickDate(options); }); return this; } var base = $(this); var moveInput, selectedDateInPersian; var isDatepickerCreated = false; var numberOfMonth = settings.numberOfMonths; var langType = settings.langType; var langTypeInverse = ''; if (langType !== 'fa') { langTypeInverse = 'fa'; langType = ''; } var showDateInBothLanguage = settings.ShowDateInBothLanguage; var persianMonthNames = ['فروردین', 'اردیبهشت', 'خرداد', 'تیر', 'مرداد', 'شهریور', 'مهر', 'آبان', 'آذر', 'دی', 'بهمن', 'اسفند']; var miladiMonthNames = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December']; var persianWeekDays = ["شنبه", "1 شنبه", "2 شنبه", "3 شنبه", " 4 شنبه", "5 شنبه", "جمعه"]; var miladiWeekDays = ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"]; base.find('.pickDate').on('keyup keypress change', function (e) { if (($(this).val()) && $(this).val().length > 9) { showAnotherLanguageDate($(this), $(this).attr('data-lang'), $(this).val()); } else { $(this).next().val(''); } if (settings.fillHidden.enable && $(this).val()) { setHiddenFiledAnotherFormat($(this)); } }); base.find('.pickDate_2').on('keyup keypress change', function (e) { if ($(this).val().length > 9) { showAnotherLanguageDate($(this), $(this).attr('data-lang'), $(this).val()); } else { $(this).next().val(''); } if (settings.fillHidden.enable && $(this).val()) { setHiddenFiledAnotherFormat($(this)); } }); if (base.find('.pickDate').next('input[type="hidden"]').val() !== '') { //console.log(base.find('.pickDate').next('input[tyoe="hidden"]').val()); } base.find('.pickDate_diffrentFormat') .on('keyup keypress blur change', function (e) { if ($(this).val().length == 10) { showAnotherLanguageDate_pickDate($(this), $(this).attr('data-lang'), $(this).val()); } else { $(this).prev().val(''); } }); base.find('.pickDate_2_diffrentFormat').on('keyup keypress blur change', function (e) { if ($(this).val().length == 10) { showAnotherLanguageDate_pickDate($(this), $(this).attr('data-lang'), $(this).val()); } else { $(this).prev().val(''); } }); if (settings.fillHidden.enable && base.find('.pickDate').next('input').val()) { fillFromHidden(base.find('.pickDate'), base.find('.pickDate').next('input').val()); } if (settings.fillHidden.PickDate_Hidden_val !== null) { base.find('.pickDate').next('input').val(settings.fillHidden.PickDate_Hidden_val); fillFromHidden(base.find('.pickDate'), settings.fillHidden.PickDate_Hidden_val); } if (settings.fillHidden.PickDate2_Hidden_val !== null) { base.find('.pickDate_2').next('input').val(settings.fillHidden.PickDate2_Hidden_val); fillFromHidden(base.find('.pickDate_2'), settings.fillHidden.PickDate2_Hidden_val); } if (settings.isDependenceDates) { base.find('.pickDate').attr('data-lang', langType); base.find('.pickDate_2').attr('data-lang', langType); base.find('.pickDate_diffrentFormat').attr('data-lang', langTypeInverse); base.find('.pickDate_2_diffrentFormat').attr('data-lang', langTypeInverse); //if ($(window).width() < 768 && numberOfMonth > 1) { // numberOfMonth = 1; //} date(langType, base, numberOfMonth, false); if (settings.ShowDateInBothLanguage) dateConvert(langTypeInverse, base, numberOfMonth, true); if (base.find('.pickDate').val()) { if (!settings.fillHidden.enable) { base.find('.pickDate').datepicker("setDate", $('.pickDate').val()); } if (!$('.pickDate').val().indexOf("/12/31")) { base.find('.pickDate').datepicker("setDate", $('.pickDate').val()); } showAnotherLanguageDate(base.find('.pickDate'), $('.pickDate').attr('data-lang'), base.find('.pickDate').val()); // base.find('.pickDate_diffrentFormat').val(base.find('.pickDate_diffrentFormat').datepicker("getDate")); } } else if (!settings.isDependenceDates) { base.find('.pickDate').attr('data-lang', langType); base.find('.pickDate_2').attr('data-lang', langType); base.find('.pickDate_diffrentFormat').attr('data-lang', langTypeInverse); //if ($(window).width() < 768 && numberOfMonth > 1) { // numberOfMonth = 1; //} date(langType, base, numberOfMonth, false); dateConvert(langTypeInverse, base, numberOfMonth, true); if (base.find('.pickDate').val()) { //base.find('.pickDate').datepicker("setDate", '2016/10/31'); // base.find('.pickDate').datepicker("setDate", base.find('.pickDate').val()); var returnDate = showAnotherLanguageDate_pickDate(base, base.find('.pickDate').attr('data-lang'), base.find('.pickDate').val()); base.find('.pickDate_diffrentFormat').val(returnDate); } } var flag = true; function date(languageType, object, monthNum, isDisabled) { var today = new Date(); var tomorrow = new Date(today.getTime() + 24 * 60 * 60 * 1000); if (!settings.multiDatesPick.enable) { object.find('.pickDate').datepicker({ minDate: settings.minDate, numberOfMonths: monthNum, dateFormat: settings.dateFormat, showAnim: 'fadeIn', autoclose: true, changeYear: settings.changeYearAllow, changeMonth: settings.changeMonthAllow, yearRange: settings.yearRange, maxDate: settings.maxDate, dayNamesMin: languageType === 'fa' ? [" 1 شنبه", " 2 شنبه", " 3 شنبه", " 4 شنبه", " 5 شنبه", "جمعه", "شنبه"] : ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"], beforeShow: function (input, inst) { $(input).siblings('.spinner').removeClass('hide'); if ($(window).width() < 600) { $('body').css({ 'overflow': 'hidden', 'height': '100vh' }) } $('#ui-datepicker-div').css('visibility', 'hidden'); moveInput = input; setTimeout(function () { if (settings.positionSet) { if ($(window).width() > 992) { inst.dpDiv.css({ left: ($(input).closest('.DependentDatepickers').find('.pickDate_2').length ? $(input).closest('.DependentDatepickers').find('.pickDate_2').offset().left : $(input).offset().left), top: $(input).closest('.DependentDatepickers').length ? $(input).closest('.DependentDatepickers').offset().top + $(input).outerHeight() - 20 : '+=' + 3 }); } else { inst.dpDiv.css({ // left: $(input).offset().left - ($('#ui-datepicker-div').width() - $(input).closest('.landing-search--items').width()), top: '+=' + 3 }); } } if (settings.fullWidth_of_inputs) { var fullWidth = $('.DependentDatepickers>div').width() * 2; $('#ui-datepicker-div').css('min-width', fullWidth); } $('#ui-datepicker-div').prepend('
'); $('.calendar-header').html('' + $(moveInput).attr('placeholder') + ''); }, 0); if (settings.showButtonPanel) convertLanguageButtons(input, object); if (languageType === '') { $.datepicker.setDefaults($.datepicker.regional['']); if (selectedDateInPersian != undefined) { object.find('.pickDate').datepicker('setDate', selectedDateInPersian); object.find('.pickDate_2').datepicker('setDate', selectedDateInPersian); selectedDateInPersian = null; } //Display Position if (settings.positionSet) { setTimeout(function () { inst.dpDiv.css({ top: $(input).closest('.DependentDatepickers') ? $(input).closest('.DependentDatepickers').offset().top + $(input).outerHeight() + 5 : 'inherit', left: $(input).offset().left - inst.dpDiv.outerWidth() + $(input).outerWidth() + 35 }); $('#ui-datepicker-div').find('.ToggleToAd').removeClass('selected'); $('#ui-datepicker-div').find('.ToggleToMiladi').addClass('selected'); }, 0); } $(this).attr('data-lang', ''); } else if (languageType === 'fa') { $.datepicker.setDefaults($.datepicker.regional['fa']); if (selectedDateInPersian != undefined) { object.find('.pickDate').datepicker('setDate', selectedDateInPersian); object.find('.pickDate_2').datepicker('setDate', selectedDateInPersian); selectedDateInPersian = null; } object.find('.ToggleToAd').removeClass('selected'); object.find('.ToggleToShamsi').addClass('selected'); setTimeout(function () { if (settings.positionSet) { inst.dpDiv.css({ top: $(input).closest('.DependentDatepickers').length ? $(input).closest('.DependentDatepickers').offset().top + $(input).closest('.DependentDatepickers').outerHeight() + 5: '+=' + 3, left: $(input).closest('.DependentDatepickers').offset().left - ( $('#ui-datepicker-div').width() - $(input).closest('.DependentDatepickers').width() ) }); } $('#ui-datepicker-div').find('.ToggleToAd').removeClass('selected'); $('#ui-datepicker-div').find('.ToggleToShamsi').addClass('selected'); }, 0); $(this).attr('data-lang', 'fa'); } if (settings.showAllMonthsinList) { setTimeout(function () { calendarTheme(input); }, 0); } setTimeout(function () { $('#ui-datepicker-div').css('visibility', 'visible'); if ($(window).width() < 600) { inst.dpDiv.css({//open datePicker bottom top: $(input).offset().top + 50, left: $(input).offset().left }); } // customscroll if (settings.customScroll) { $(".datepicker-content").mCustomScrollbar({ theme: "dark-thick", autoExpandScrollbar: true }); $(".datepicker-content").css('overflow', 'hidden'); } }, 0); if (settings.customClass) $('#ui-datepicker-div').addClass(settings.customClass); var eventDates = {}; var highlight = eventDates[date]; if (highlight) { return [true, "event", highlight]; } else { return [true, '', '']; } }, onClose: function () { $('.DependentDatepickers .spinner').addClass('hide'); if ($(window).width() < 600) { $('body').css({ 'overflow': 'visible', 'height': 'auto' }); } }, onChangeMonthYear: function () { if (settings.showButtonPanel) convertLanguageButtons(moveInput, object); if (languageType == '') { setTimeout(function () { $('#ui-datepicker-div').find('.ToggleToAd').removeClass('selected'); $('#ui-datepicker-div').find('.ToggleToMiladi').addClass('selected'); }, 0); } else if (languageType == 'fa') { setTimeout(function () { $('#ui-datepicker-div').find('.ToggleToAd').removeClass('selected'); $('#ui-datepicker-div').find('.ToggleToShamsi').addClass('selected'); }, 0); } }, onSelect: function (selectedDate) { $('.DependentDatepickers .spinner').addClass('hide'); isDisabled = object.find('.pickDate_2').prop('disabled'); if (!isDisabled && object.find('.pickDate_2').is(":visible")) { object.find('.pickDate_2').datepicker('setDate', selectedDate); //not fill pickDate_2 object.find(".pickDate_2").val(''); object.find(".pickDate_2").datepicker("option", "minDate", selectedDate); object.find(".pickDate_2").attr('data-lang', languageType); //setTimeout(function () { // object.find(".pickDate_2").datepicker('show'); //}, //16); } showAnotherLanguageDate(object.find('.pickDate'), languageType, selectedDate); //$(this).parent().find('input').change(); if (settings && settings.onSelect) { settings.onSelect(object.find('.pickDate').first(), moment(selectedDate, 'jYYYY/jMM/jDD').locale('en').format('YYYY/MM/DD')); } if (settings.fillHidden.enable) { setHiddenFiledAnotherFormat($(this)); } object.find('.pickDate').attr('data-SimpleDate', selectedDate); } }); object.find('.pickDate_2') .datepicker({ numberOfMonths: monthNum, minDate: settings.minDate, maxDate: settings.maxDate, showAnim: 'fadeIn', dateFormat: settings.dateFormat, autoclose: true, changeYear: settings.changeYearAllow, changeMonth: settings.changeMonthAllow, yearRange: settings.yearRange, // dayNamesMin: object.find('.pickDate').attr('data-lang') === 'fa' ? [" 1 شنبه", " 2 شنبه", " 3 شنبه", " 4 شنبه", " 5 شنبه", "جمعه", "شنبه"] : ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"], beforeShow: function (input2, inst2) { languageType = object.find('.pickDate').attr('data-lang'); if ($(window).width() < 600) { $('body').css({ 'overflow': 'hidden', 'height': '100vh' }); } $('#ui-datepicker-div').css('visibility', 'hidden'); isDatepickerCreated = true; setTimeout(function () { if (settings.positionSet) { inst2.dpDiv.css({ top: $(input2).closest('.DependentDatepickers').length ? $(input2).closest('.DependentDatepickers').offset().top + $(input2).closest('.DependentDatepickers').outerHeight() + 5: '+=' + 3, left: "+=" + 35 }); } if (settings.align2thCalendarWith2thInput) { inst2.dpDiv.css({ left: $(input2).offset().left }); } if (settings.openInSameLocation) { inst2.dpDiv.css({ left: $(input2).closest('.DependentDatepickers').offset().left - (inst2.dpDiv.width() - $(input2).closest('.DependentDatepickers').width()) }); } if (settings.fullWidth_of_inputs) { var fullWidth = $('.DependentDatepickers>div').width() * 2; $('#ui-datepicker-div').css('min-width', fullWidth); } }, 0); if (languageType === '') { $.datepicker.setDefaults($.datepicker.regional['']); //// Display Position setTimeout(function () { inst2.dpDiv.css({ top: $(input2).closest('.DependentDatepickers').offset().top + $(input2).outerHeight() - 5, left: $(input2).offset().left - inst2.dpDiv.outerWidth() + $(input2).outerWidth() + 35 }); }, 0); } if (settings.showAllMonthsinList) { setTimeout(function () { calendarTheme(input2); }, 0); } setTimeout(function () { $('#ui-datepicker-div').css('visibility', 'visible'); if ($(window).width() < 600) {//open datePicker bottom inst2.dpDiv.css({ top: $(input2).offset().top + 50, left: $(input2).offset().left }); } $('#ui-datepicker-div').prepend('
'); $('#ui-datepicker-div .calendar-header').prepend(""); $("body").delegate("label.helpLabel i", "click", function () { $(".pickDate_2").datepicker("hide"); }); if (settings.customClass) $('#ui-datepicker-div').addClass(settings.customClass); // customscroll if (settings.customScroll) { $(".datepicker-content").mCustomScrollbar({ theme: "dark-thick", autoExpandScrollbar: true }); $(".datepicker-content").css('overflow', 'hidden'); } }, 0); }, onClose: function () { if ($(window).width() < 600) { $('body').css({ 'overflow': 'visible', 'height': 'auto' }); } }, onChangeMonthYear: function () { }, onSelect: function (selectedDate2) { showAnotherLanguageDate(object.find(".pickDate_2"), languageType, selectedDate2); // $(this).parent().find('input').change(); if (settings && settings.onSelect) { settings.onSelect(object.find('.pickDate_2').first(), moment(selectedDate2, 'jYYYY/jMM/jDD').locale('en').format('YYYY/MM/DD')); } if (settings.fillHidden.enable) { setHiddenFiledAnotherFormat($(this)); } object.find('.pickDate_2').attr('data-SimpleDate', selectedDate2); } }); } else if (settings.multiDatesPick.enable) { if (settings.showButtonPanel) { convertLanguageButtons(object.parent().find('input[type=text]'), object); } if (languageType === '') { $.datepicker.setDefaults($.datepicker.regional[""]); object.parent().find('input[type=text]').attr('data-lang', ''); } else { $.datepicker.setDefaults($.datepicker.regional["fa"]); object.parent().find('input[type=text]').attr('data-lang', 'fa'); } object.multiDatesPicker({ altField: settings.multiDatesPick.altField, dateFormat: settings.dateFormat, minDate: settings.minDate, maxDate: settings.maxDate, changeMonth: true, changeYear: true, onSelect: function (selectedDate) { if (settings.fillHidden.enable) { setHiddenMultiDateFiled(object); } } }, $.datepicker.regional['']); //var dates = $('.multiSelectField').multiDatesPicker('getDates'); } if (settings.SetDate != null) { base.find('.pickDate').datepicker('setDate', settings.SetDate); base.find('.pickDate_2').datepicker('setDate', settings.SetDate); setHiddenFiledAnotherFormat(base.find('.pickDate')); setHiddenFiledAnotherFormat(base.find('.pickDate_2')); } } function dateConvert(languageType, object, monthNum, isDisabled) { object.find('.pickDate_diffrentFormat') .datepicker({ numberOfMonths: monthNum, dateFormat: settings.dateFormat, maxDate: settings.maxDate, showAnim: 'fadeIn', minDate: settings.minDate, autoclose: true, changeYear: settings.changeYearAllow, changeMonth: settings.changeMonthAllow, yearRange: settings.yearRange, beforeShow: function (input, inst) { moveInput = input; if (settings.showButtonPanel) convertLanguageButtons(input, object); if (languageType === '') { $.datepicker.setDefaults($.datepicker.regional['']); if (selectedDateInPersian != undefined) { object.find('.pickDate_diffrentFormat').datepicker('setDate', selectedDateInPersian); object.find('.pickDate_2_diffrentFormat').datepicker('setDate', selectedDateInPersian); selectedDateInPersian = null; } //Display Position setTimeout(function () { if (settings.positionSet) { inst.dpDiv.css({ left: '-=' + (inst.dpDiv.width() - input.offsetWidth + 5), top: '+=' + 3 }); } $('#ui-datepicker-div').find('.ToggleToAd').removeClass('selected'); $('#ui-datepicker-div').find('.ToggleToMiladi').addClass('selected'); }, 0); $(this).attr('data-lang', ''); } else if (languageType === 'fa') { $.datepicker.setDefaults($.datepicker.regional['fa']); if (selectedDateInPersian != undefined) { object.find('.pickDate_diffrentFormat').datepicker('setDate', selectedDateInPersian); object.find('.pickDate_2_diffrentFormat').datepicker('setDate', selectedDateInPersian); selectedDateInPersian = null; } object.find('.ToggleToAd').removeClass('selected'); object.find('.ToggleToShamsi').addClass('selected'); setTimeout(function () { if (settings.positionSet) { inst.dpDiv.css({ top: '+=' + 3 }); } $('#ui-datepicker-div').find('.ToggleToAd').removeClass('selected'); $('#ui-datepicker-div').find('.ToggleToShamsi').addClass('selected'); }, 0); $(this).attr('data-lang', 'fa'); } }, onChangeMonthYear: function () { if (settings.showButtonPanel) convertLanguageButtons(moveInput, object); if (languageType === '') { setTimeout(function () { $('#ui-datepicker-div').find('.ToggleToAd').removeClass('selected'); $('#ui-datepicker-div').find('.ToggleToMiladi').addClass('selected'); }, 0); } else if (languageType === 'fa') { setTimeout(function () { $('#ui-datepicker-div').find('.ToggleToAd').removeClass('selected'); $('#ui-datepicker-div').find('.ToggleToShamsi').addClass('selected'); }, 0); } }, onSelect: function (selectedDate) { isDisabled = object.find('.pickDate_2').prop('disabled'); if (!isDisabled) { object.find('.pickDate_diffrentFormat').datepicker('setDate', selectedDate); object.find(".pickDate_2_diffrentFormat").datepicker("option", "minDate", selectedDate); setTimeout(function () { object.find(".pickDate_2_diffrentFormat").datepicker('show'); }, 16); } showAnotherLanguageDate_pickDate($(this), languageType, selectedDate); $(this).parent().find('input').blur(); } }); object.find('.pickDate_2_diffrentFormat') .datepicker({ numberOfMonths: monthNum, showAnim: 'fadeIn', minDate: settings.minDate, maxDate: settings.maxDate, dateFormat: settings.dateFormat, autoclose: true, changeYear: settings.changeYearAllow, changeMonth: settings.changeMonthAllow, yearRange: settings.yearRange, beforeShow: function (input2, inst2) { isDatepickerCreated = true; if (languageType === '') { $.datepicker.setDefaults($.datepicker.regional['']); //// Display Position if (settings.positionSet) { setTimeout(function () { inst2.dpDiv.css({ left: '-=' + (inst2.dpDiv.width() - input2.offsetWidth), top: '+=' + 3 }); }, 0); } } if (languageType === 'fa') { $.datepicker.setDefaults($.datepicker.regional['fa']); } }, onSelect: function (selectedDate2) { showAnotherLanguageDate_pickDate($(this), languageType, selectedDate2); $(this).parent().find('input').blur(); } }); } function convertLanguageButtons(inputDate, object) { var language, languageInverse, btnContainer; setTimeout(function () { if (settings.multiDatesPick.enable && !object.find('.toggleBtnWrapper').length) { $('
').prependTo(object); btnContainer = object.find('.toggleBtnWrapper'); } else { $('
').prependTo($('#ui-datepicker-div .calendar-header')); btnContainer = $('#ui-datepicker-div .toggleBtnWrapper'); } $("', nextArrow: '', autoplay: false, autoplaySpeed: 3000, centerMode: false, centerPadding: '50px', cssEase: 'ease', customPaging: function(slider, i) { return $(''; $('.js-limitable').append(seeMoreBtn); $('.js-limitable').click(function () { $('.js-limitable').removeClass('limited'); $('.js-limitable').find('.js-remove-limited').remove(); }); } } else { //It is for when it is 404 page $("#tour-filter-wrapper").removeClass("hide"); $(".c-filter-menu").addClass("hide"); $(".c-tours").addClass("hide"); } } self.isFilter = function () { var result = false; self.hasAnyItemsInList(); masterViewModel.toursFilter.filterViewModel.filterItems().forEach(function (val) { if (val.fieldName == "TourDays") { val.children().sort((a, b) => parseFloat(a.slug) - parseFloat(b.slug)); } val.children().forEach(function (childVal) { switch (val.fieldName) { case 'StartCity': case 'EndCity': case 'TourDays': case 'TripType': case 'TourFlight': case 'TourAgency': if (childVal.isSelected()) { result = true; } break; case 'Price': if (Number(val.maximum) == Number(val.maximumValue()) && Number(val.minimum) == Number(val.minimumValue())) { result = false; } result = true; break; default: result = false; break; } }) }) return result; } self.backupFromLastState = function () { var arrayOftempFilterItem = []; masterViewModel.toursFilter.filterViewModel.filterItems().forEach(function (val) { var tempFilterItem = { maximum: val.maximum, maximumValue: val.maximumValue(), minimum: val.minimum, minimumValue: val.minimumValue(), fieldName: val.fieldName, children: [] } val.children().forEach(function (childVal) { tempFilterItem.children.push({ isSelected: childVal.isSelected() }) }) arrayOftempFilterItem.push(tempFilterItem); }) self.filtersBeforePopup = arrayOftempFilterItem } self.restoreToLastState = function () { masterViewModel.toursFilter.filterViewModel.filterItems().forEach(function (val, i) { val.maximum = self.filtersBeforePopup[i].maximum; val.maximumValue(self.filtersBeforePopup[i].maximumValue); val.minimum = self.filtersBeforePopup[i].minimum; val.minimumValue(self.filtersBeforePopup[i].minimumValue); val.fieldName = self.filtersBeforePopup[i].fieldName; val.children().forEach(function (childVal, childIndex) { childVal.isSelected(self.filtersBeforePopup[i].children[childIndex].isSelected) }) }) } self.changefilterOnTime = function (flag) { self.backupFromLastState(); self.isfilterOnTime = flag; isFitlerChanged = true; self.pageNumber(1); if (self.isfilterOnTime) { self.sendFilterRequest(); } } self.filterViewModel = new AdvancedFilter({ sortItems: self.options.sortItems, filterObjectListMode: self.options.tourCategorySlug === "all" ? 'tag' : 'category', selectedSortItem: self.options.selectedSortItem, pageNumber: self.pageNumber, onFilterChanged: function () { isFitlerChanged = true; self.pageNumber(1); if (self.isfilterOnTime) { self.sendFilterRequest(); } }, onclearDate: function () { $("input.pickDate").val(""); $("input.pickDate_2").val(""); self.parameters(""); isFitlerChanged = true; self.pageNumber(1); self.sendFilterRequest(); $('[data-simpledate]').removeAttr('data-simpledate'); }, convertToChildren: function (specialChildren, filterItem) { var filterItems = []; $(specialChildren).each(function () { var data = ko.toJS(this); filterItems.push({ id: data.value, title: data.text, slug: data.groupName, type: filterItem.type, showType: filterItem.showType, isSelected: true }); }); return filterItems; }, convertToSpecialChildren: function (filterItems, filterItem, filterOnChange) { }, }); self.filterViewModel1 = new AdvancedFilter({ sortItems: self.options.sortItems, filterObjectListMode: self.options.tourCategorySlug === "all" ? 'tag' : 'category', selectedSortItem: self.options.selectedSortItem, pageNumber: self.pageNumber, onFilterChanged: function () { isFitlerChanged = true; self.pageNumber(1); if (self.isfilterOnTime) { self.sendFilterRequest(); } }, onclearDate: function () { $("input.pickDate").val(""); $("input.pickDate_2").val(""); self.parameters(""); isFitlerChanged = true; self.pageNumber(1); self.sendFilterRequest(); $('[data-simpledate]').removeAttr('data-simpledate'); }, convertToChildren: function (specialChildren, filterItem) { var filterItems = []; $(specialChildren).each(function () { var data = ko.toJS(this); filterItems.push({ id: data.value, title: data.text, slug: data.groupName, type: filterItem.type, showType: filterItem.showType, isSelected: true }); }); return filterItems; }, convertToSpecialChildren: function (filterItems, filterItem, filterOnChange) { }, }); self.result = new TourFilterResultViewModel({ prodcuts: [], totalCount: 0, options: { onLoadCompleted: self.options.onLoadCompleted } }); // Public methods self.sendFilterRequest = function () { if (lastRequest) { lastRequest.abort(); } self.isLoadCompleted(false); var requestData = createStringFilterRequestData(); lastRequest = $.post(self.options.requestFilterUrl, "params=" + requestData.url) .done(function (response) { if (response) { if (response.isSucceed) { masterViewModel.toursFilter.result.tours([]) if (response.filters) { self.filterViewModel.loadFilters(response.filters); } self.result.loadResult(response.result, requestData, !isFitlerChanged); if (isFitlerChanged) { self.pagination.reset(response.result.totalCount, self.pageNumber()); isFitlerChanged = false; } if (!isLoadSpecialChildren()) { $(self.filterViewModel.filterItems()).each(function () { this.convertToSpecialChildren(); }); isLoadSpecialChildren(true); } var viewchanger = parseInt($("#view-changer-switch").val()); if (viewchanger === 0) { $('#tours-list-like').fadeIn(); $('#tours-table-like').fadeOut(); } else { $('#tours-table-like').fadeIn(); $('#tours-list-like').fadeOut(); } } else { showAlert(response.messages); callOnError(response.messages); } } else { callOnError(); } }) .fail(function (jqXhr, textStatus) { callOnError(textStatus); }) .always(function () { self.isLoadCompleted(true); // if($('.anchor-list')) { // var $list = $('.anchor-list a'); // $list.click(function(e) { // e.preventDefault(); // // $('html, body').animate({scrollTop: $($(this).attr('href')).offset().top}, 1000); // }) // } console.log(`${self.result.totalCount()} <= ${self.pageNumber() * self.pageSize()} (${self.pageNumber()} * ${self.pageSize()})`); if (self.result.totalCount() <= self.pageNumber() * self.pageSize()) { $('.tours__see-more-tour').addClass('hide'); } else { $('.tours__see-more-tour').removeClass('hide'); } //$('.tours__see-more-tour').removeClass('hide'); }); }; self.changeSortItem = function (sortItem) { self.filterViewModel.selectedSortItem(sortItem); self.sendFilterRequest(); return false; }; self.start = function () { if (baseConfigs.requestFilterItemUrl) { $.post(baseConfigs.requestFilterItemUrl, "params=" + self.url()) .done(function (response) { if (response) { if (response.isSucceed) { if (response.filters) { self.filterViewModel.loadFilters(response.filters); } self.sendFilterRequest(); } else { showAlert(response.messages); callOnError(response.messages); } } else { callOnError(); } }) .fail(function (jqXhr, textStatus) { callOnError(textStatus); }) .always(function () { //call function for recent View }); } else { self.sendFilterRequest(); } }; self.prepareFilterRequest = function (queryString) { self.parameters(queryString); self.pagination.changePageNumber(getParameter(queryString, "pageNumber")); //self.filterViewModel.selectedSortItemId(getParameter(queryString, "sort")); }; }; })(); $(function () { $('.drop-down-btn').click(function () { $(this).siblings('.drop-down-items').toggleClass('open'); }); //open filter modal after click in btn $('.filter-menu__btn > button').click(function (e) { // window.location.hash = 'filter-open'; $('.filter-items').addClass('open'); $('body').addClass('over-h'); }) // $(window).on('popstate ' , function(){ // if(window.location.hash != 'filter-open'){ // $('.filter-items').removeClass('open'); // $('body').removeClass('over-h') // } // }) // open sort in mobile $('.filter-sort-btns-sort').click(function () { $('.filter-menu__sort-mobile').addClass('open'); $('body').addClass('over-h'); }); // close sort in mobile with close icon $('.filter-menu__sort-mobile-title > i').click(function () { $('.filter-menu__sort-mobile').removeClass('open'); $('body').removeClass('over-h') }); // open filter in mobile $('.filter-sort-btns-filter').click(function () { //window.location.hash = 'filter-open'; $('.filter-items').addClass('open'); $('body').addClass('over-h'); }); // close filter modal after click in close icon in modal $('.filter-items__header > i').click(function () { $('.filter-items').removeClass('open'); $('body').removeClass('over-h'); // window.history.back(); }); // close filter modal after click in confirm btn in modal $('.filter-items__submit button').click(function (e) { e.preventDefault(); $('.filter-items').removeClass('open'); $('body').removeClass('over-h'); //window.history.back(); }); $(".tour-404__cotent-btn").click(function () { var url = $("#redirectToTourSearch").val(); location.href = url; }); $(".filter-404__cotent-btn").click(function () { if (masterViewModel != undefined) { masterViewModel.toursFilter.filterViewModel.deselectAllFilterItems(); } $(".c-filter-404").addClass("hide"); }); //click in out of modal close modal $(document).click(function (e) { // close filter shorthands drop downs if (!$(e.target).closest('.filter-menu__shorthands > div > div .drop-down-items').length != 0 && !$(e.target).closest('.drop-down-btn').length != 0) { $('.filter-menu__shorthands > div > div').find('.drop-down-items ').removeClass('open'); } // close sort drop down if (!$(e.target).closest('.filter-menu__sort .drop-down-items').length != 0 && !$(e.target).closest('.drop-down-btn').length != 0) { $('.filter-menu__sort').find('.drop-down-items ').removeClass('open'); } if ($(e.target).hasClass('filter-items')) { $('.filter-items').removeClass('open'); $('body').removeClass('over-h'); masterViewModel.toursFilter.restoreToLastState(); masterViewModel.toursFilter.isfilterOnTime = true; } if ($(e.target).hasClass('closeModal')) { masterViewModel.toursFilter.restoreToLastState(); masterViewModel.toursFilter.isfilterOnTime = true; } }); //open filter shorthands drop downs $(document).delegate('.filter-menu__shorthands > div > div', 'click', function (e) { $('.filter-menu__shorthands > div > div').find('.drop-down-items ').removeClass('open'); if (e.target.className !="koj-close") { $(this).find('.drop-down-items ').toggleClass('open'); } }); // close filter shorthands drop downs $(document).delegate('.filter-menu__shorthands .drop-down-items-title i', 'click', function (e) { e.stopPropagation(); $(this).closest('.drop-down-items').removeClass('open'); }); // close sort drop down after select $('.filter-menu__sort ul li label').click(function () { $(this).closest('.drop-down-items').removeClass('open'); }); //after click in see more btn show more tours in tour filter $(document).delegate('.tours__see-more-tour button', 'click', function () { //$(this).remove(); $('.tours__table .tours__table-row').removeClass('hide'); $('.tours__see-more-tour').addClass('hide'); }); // toggle faq answers when click in question $('.faq__items-item-question').click(function () { $(this).find('i').toggleClass('open'); $(this).siblings('.faq__items-item-answer').slideToggle() }); });