webshims.register('form-number-date-ui', function($, webshims, window, document, undefined, options){ "use strict"; var curCfg; var formcfg = webshims.formcfg; var hasFormValidation = webshims.support.formvalidation && !webshims.bugs.bustedValidity; var monthDigits = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12']; var stopPropagation = function(e){ e.stopImmediatePropagation(); }; var getMonthOptions = function(opts){ var selectName = 'monthSelect'+opts.monthNames; if(!curCfg[selectName]){ var labels = curCfg.date[opts.monthNames] || monthDigits; curCfg[selectName] = ('')+$.map(monthDigits, function(val, i){ return ''; }).join(''); } return curCfg[selectName]; }; var daySelect = ''; var createFormat = function(name){ if(!curCfg.patterns[name+'Obj']){ var obj = {}; $.each(curCfg.patterns[name].split(curCfg[name+'Format']), function(i, name){ obj[name] = i; }); curCfg.patterns[name+'Obj'] = obj; } }; var createYearSelect = function(obj, opts){ var options, nowY, max, min; if(opts.yearSelect){ nowY = parseInt(opts.value.split('-')[0], 10); max = opts.max.split('-'); min = opts.min.split('-'); options = webshims.picker.createYearSelect(nowY || parseInt(min[0], 10) || parseInt(max[0], 10) || nowYear, max, min); options.unshift(''); $(obj.elements) .filter('select.yy') .html(options.join('')) .each(function(){ if(!nowY){ $('option[selected]', this).removeAttr('selected'); $(this).val(); } }) ; } }; var numericType = webshims.support.inputtypes.tel && navigator.userAgent.indexOf('Mobile') != -1 && !('inputMode' in document.createElement('input') && !('inputmode' in document.createElement('input'))) ? 'tel' : 'text'; var splitInputs = { date: { _create: function(opts){ var obj = { splits: [] }; if(opts.yearSelect){ obj.splits.push($('')[0]); } else { obj.splits.push($('')[0]); } if(opts.monthSelect){ obj.splits.push($('')[0]); } else { obj.splits.push($('')[0]); } if(opts.daySelect){ obj.splits.push($(daySelect)[0]); } else { obj.splits.push($('')[0]); } obj.elements = [obj.splits[0], $('')[0], obj.splits[1], $('')[0], obj.splits[2]]; createYearSelect(obj, opts); return obj; }, sort: function(element){ createFormat('d'); var i = 0; var seperators = $('.ws-input-seperator', element).html(curCfg.dFormat); var inputs = $('input, select', element); $.each(curCfg.patterns.dObj, function(name, value){ var input = inputs.filter('.'+ name); if(input[0]){ input.appendTo(element); if(i < seperators.length){ seperators.eq(i).insertAfter(input); } i++; } }); } }, month: { _create: function(opts){ var obj = { splits: [] }; if(opts.yearSelect){ obj.splits.push($('')[0]); } else { obj.splits.push($('')[0]); } if(opts.monthSelect){ obj.splits.push($('')[0]); } else { obj.splits.push($('')[0]); if(opts.onlyMonthDigits){ $().attr({inputmode: 'numeric', size: 2, maxlength: 2}); try { obj.splits[1].setAttribute('type', numericType); } catch(e){} } } obj.elements = [obj.splits[0], $('')[0], obj.splits[1]]; createYearSelect(obj, opts); return obj; }, sort: function(element){ var seperator = $('.ws-input-seperator', element).html(curCfg.dFormat); var mm = $('input.mm, select.mm', element); var action; if(curCfg.date.showMonthAfterYear){ mm.appendTo(element); action = 'insertBefore'; } else { mm.prependTo(element); action = 'insertAfter'; } seperator[action](mm); } } }; var nowDate = new Date(new Date().getTime() - (new Date().getTimezoneOffset() * 60 * 1000 )); var nowYear = nowDate.getFullYear(); nowDate = new Date(nowDate.getFullYear(), nowDate.getMonth(), nowDate.getDate(), nowDate.getHours()).getTime(); var steps = { number: { step: 1 }, // week: { // step: 1, // start: new Date(nowDate) // }, 'datetime-local': { step: 60, start: new Date(nowDate).getTime() }, time: { step: 60 }, month: { step: 1, start: new Date(nowDate) }, date: { step: 1, start: new Date(nowDate) } }; var labelWidth = (function(){ var getId = function(){ return webshims.getID(this); }; return function(element, labels, noFocus){ $(element).attr({'aria-labelledby': labels.map(getId).get().join(' ')}); if(!noFocus){ labels.on('click', function(e){ if(!e.isDefaultPrevented()){ element.getShadowFocusElement().focus(); e.preventDefault(); return false; } }); } }; })(); var addZero = function(val){ if(!val){return "";} val = val+''; return val.length == 1 ? '0'+val : val; }; var loadPicker = function(type, name){ type = (type == 'color' ? 'color' : 'forms')+'-picker'; if(!loadPicker[name+'Loaded'+type]){ loadPicker[name+'Loaded'+type] = true; webshims.ready(name, function(){ webshims.loader.loadList([type]); }); } return type; }; options.addZero = addZero; webshims.loader.addModule('forms-picker', { noAutoCallback: true, css: 'styles/forms-picker.css', options: options }); webshims.loader.addModule('color-picker', { noAutoCallback: true, css: 'jpicker/jpicker.css', options: options, d: ['forms-picker'] }); options.steps = steps; (function(){ formcfg.de = $.extend(true, { numberFormat: { ",": ".", ".": "," }, timeSigns: ":. ", numberSigns: ',', dateSigns: '.', dFormat: ".", patterns: { d: "dd.mm.yy" }, month: { currentText: 'Aktueller Monat' }, time: { currentText: 'Jetzt' }, date: { close: 'schließen', clear: 'Löschen', prevText: 'Zurück', nextText: 'Vor', currentText: 'Heute', monthNames: ['Januar','Februar','März','April','Mai','Juni', 'Juli','August','September','Oktober','November','Dezember'], monthNamesShort: ['Jan','Feb','Mär','Apr','Mai','Jun', 'Jul','Aug','Sep','Okt','Nov','Dez'], dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'], dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'], dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'], weekHeader: 'KW', firstDay: 1, isRTL: false, showMonthAfterYear: false, yearSuffix: '' } }, formcfg.de || {}); formcfg.en = $.extend(true, { numberFormat: { ".": ".", ",": "," }, numberSigns: '.', dateSigns: '/', timeSigns: ":. ", dFormat: "/", patterns: { d: "mm/dd/yy" }, meridian: ['AM', 'PM'], month: { currentText: 'This month' }, time: { "currentText": "Now" }, date: { "closeText": "Done", clear: 'Clear', "prevText": "Prev", "nextText": "Next", "currentText": "Today", "monthNames": ["January","February","March","April","May","June","July","August","September","October","November","December"], "monthNamesShort": ["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"], "dayNames": ["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"], "dayNamesShort": ["Sun","Mon","Tue","Wed","Thu","Fri","Sat"], "dayNamesMin": ["Su","Mo","Tu","We","Th","Fr","Sa"], "weekHeader": "Wk", "firstDay": 0, "isRTL": false, "showMonthAfterYear": false, "yearSuffix": "" } }, formcfg.en || {}); if(!formcfg['en-US']){ formcfg['en-US'] = $.extend(true, {}, formcfg['en']); } if(!formcfg['en-GB']){ formcfg['en-GB'] = $.extend(true, {}, formcfg.en, { date: {firstDay: 1}, patterns: {d: "dd/mm/yy"} }); } if(!formcfg['en-AU']){ formcfg['en-AU'] = $.extend(true, {}, formcfg['en-GB']); } if(!formcfg['']){ formcfg[''] = formcfg['en-US']; } curCfg = formcfg['']; var processLangCFG = function(langCfg){ if(!langCfg.date.monthkeys){ var create = function(i, name){ var strNum; var num = i + 1; strNum = (num < 10) ? '0'+num : ''+num; langCfg.date.monthkeys[num] = strNum; langCfg.date.monthkeys[name] = strNum; langCfg.date.monthkeys[name.toLowerCase()] = strNum; }; langCfg.date.monthkeys = {}; langCfg.date.monthDigits = monthDigits; langCfg.numberSigns += '-'; if(langCfg.meridian){ langCfg.timeSigns += langCfg.meridian[0] + langCfg.meridian[1] + langCfg.meridian[0].toLowerCase() + langCfg.meridian[1].toLowerCase(); } $.each(langCfg.date.monthNames, create); $.each(langCfg.date.monthNamesShort, create); } if(!langCfg.colorSigns){ langCfg.colorSigns = '#abcdefABCDEF'; } if(!langCfg['datetime-localSigns']){ langCfg['datetime-localSigns'] = langCfg.dateSigns+langCfg.timeSigns; } if(!langCfg['datetime-local']){ langCfg['datetime-local'] = {}; } if(!langCfg.time){ langCfg.time = {}; } if(!langCfg['datetime-local'].currentText && langCfg.time.currentText){ langCfg['datetime-local'].currentText = langCfg.time.currentText; } }; var triggerLocaleChange = function(){ processLangCFG(curCfg); $(document).triggerHandler('wslocalechange'); }; curCfg = webshims.activeLang(formcfg); triggerLocaleChange(); $(formcfg).on('change', function(){ curCfg = formcfg.__active; triggerLocaleChange(); }); })(); (function(){ var retDefault = function(val, def){ if(!(typeof val == 'number' || (val && val == val * 1))){ return def; } return val * 1; }; var formatVal = { number: function(val, o, noCorrect){ var parts, len, i, isNegative; if(o && o.nogrouping){ return (val+'').replace(/\,/g, '').replace(/\./, curCfg.numberFormat['.']); } val += ''; if(val.charAt(0) == '-'){ isNegative = true; val = val.replace('-', ''); } parts = val.split('.'); len = parts[0].length; i = len - 1; val = ""; while(i >= 0) { val = parts[0].charAt(i) + val; if (i > 0 && (len - i) % 3 === 0) { val = curCfg.numberFormat[','] + val; } --i; } if(parts[1] != null){ if(!noCorrect){ parts[1] = parts[1].replace(/\-/g, '0'); } val += curCfg.numberFormat['.'] + parts[1]; } if(isNegative){ val = '-'+val; } return val; }, time: function(val, o, noCorrect){ var fVal, i; if(val){ val = val.split(':'); if(curCfg.meridian){ fVal = (val[0] * 1); if(fVal && fVal >= 12){ val[0] = addZero(fVal - 12+''); fVal = 1; } else { fVal = 0; } if(val[0] === '00'){ val[0] = '12'; } } if(!noCorrect){ for(i = 0; i < val.length; i++){ val[i] = addZero(val[i]); } if(!val[1]){ val[1] = '00'; } } val = $.trim(val.join(':')); if(fVal != null && curCfg.meridian){ val += ' '+curCfg.meridian[fVal]; } } return val; }, 'datetime-local': function(val, o){ var fVal = $.trim(val || '').split('T'); if(fVal.length == 2){ val = this.date(fVal[0], o) +' '+this.time(fVal[1], o); } return val; }, // week: function(val){ // return val; // }, //todo empty val for month/split month: function(val, options){ var names; var p = val.split('-'); if(p[0] && p[1]){ if(!options || !options.monthSelect){ names = curCfg.date[options.monthNames] || curCfg.date.monthNames; p[1] = names[(p[1] * 1) - 1]; } if(options && options.splitInput){ val = [p[0] || '', p[1] || '']; } else if(p[1]){ val = curCfg.date.showMonthAfterYear ? p.join(' ') : p[1]+' '+p[0]; } } else if(options && options.splitInput){ val = [p[0] || '', p[1] || '']; } return val; }, date: function(val, opts){ var p = (val+'').split('-'); if(p[2] && p[1] && p[0]){ if(opts && opts.splitInput){ val = p; } else { val = curCfg.patterns.d.replace('yy', p[0] || ''); val = val.replace('mm', p[1] || ''); val = val.replace('dd', p[2] || ''); } } else if(opts && opts.splitInput){ val = [p[0] || '', p[1] || '', p[2] || '']; } return val; }, color: function(val, opts){ var ret = '#000000'; if(val){ val = val.toLowerCase(); if(val.length == 7 && createHelper('color').isValid(val)) { ret = val; } } return ret; } }; var parseVal = { number: function(val){ return (val+'').split(curCfg.numberFormat[',']).join('').replace(curCfg.numberFormat['.'], '.'); }, // week: function(val){ // return val; // }, 'datetime-local': function(val, o){ var tmp; var fVal = $.trim(val || '').split(/\s+/); if(fVal.length == 2){ if(fVal[0].indexOf(':') != -1 && fVal[1].indexOf(':') == -1){ tmp = fVal[1]; fVal[1] = fVal[0]; fVal[0] = tmp; } val = this.date(fVal[0], o) +'T'+ this.time(fVal[1], o); } else if (fVal.length == 3) { val = this.date(fVal[0], o) +'T'+ this.time(fVal[1]+fVal[2], o); } return val; }, time: function(val){ var fVal; if(val && curCfg.meridian){ val = val.toUpperCase(); if(val.substr(0,2) === "12"){ val = "00" + val.substr(2); } if(val.indexOf(curCfg.meridian[1]) != -1){ val = val.split(':'); fVal = (val[0].replace(curCfg.meridian[1], '') * 1); if(!isNaN(fVal)){ val[0] = fVal + 12; } val = val.join(':'); } val = $.trim(val.replace(curCfg.meridian[0], '').replace(curCfg.meridian[1], '')); } return val; }, month: function(val, opts, noCorrect){ var p = (!opts.splitInput) ? val.trim().split(/[\.\s-\/\\]+/) : val; if(p.length == 2 && p[0] && p[1]){ p[0] = !noCorrect && curCfg.date.monthkeys[p[0]] || p[0]; p[1] = !noCorrect && curCfg.date.monthkeys[p[1]] || p[1]; if(p[1].length == 2 && p[0].length > 3){ val = p[0]+'-'+p[1]; } else if(p[0].length == 2 && p[1].length > 3){ val = p[1]+'-'+p[0]; } else { val = ''; } } else if(opts.splitInput) { val = ''; } return val; }, date: function(val, opts, noCorrect){ createFormat('d'); var tmp, obj; var ret = ''; if(opts.splitInput){ obj = {yy: 0, mm: 1, dd: 2}; } else { obj = curCfg.patterns.dObj; val = val.split(curCfg.dFormat); } if(val.length == 3 && val[0] && val[1] && val[2] && (!noCorrect || (val[obj.yy].length > 3 && val[obj.mm].length == 2 && val[obj.dd].length == 2))){ if(!opts.noDayMonthSwitch && val[obj.mm] > 12 && val[obj.dd] < 13){ tmp = val[obj.dd]; val[obj.dd] = val[obj.mm]; val[obj.mm] = tmp; } if(val[obj.yy].length < 4){ tmp = ((new Date()).getFullYear() +'').substr(0, 4 - val[obj.yy].length); if(val[obj.yy] > 50){ tmp--; } val[obj.yy] = tmp + val[obj.yy]; } ret = ([addZero(val[obj.yy]), addZero(val[obj.mm]), addZero(val[obj.dd])]).join('-'); } return ret ; }, color: function(val, opts){ var ret = '#000000'; if(val){ val = val.toLowerCase(); if (val.indexOf('#') !== 0) { val = '#' + val; } if(val.length == 4){ val = '#' + val.charAt(1) + val.charAt(1) + val.charAt(2) + val.charAt(2) + val.charAt(3) + val.charAt(3); } if(val.length == 7 && createHelper('color').isValid(val)) { ret = val; } } return ret; } }; var placeholderFormat = { date: function(val, opts){ var hintValue = (val || '').split('-'); if(hintValue.length == 3){ hintValue = opts.splitInput ? hintValue : curCfg.patterns.d.replace('yy', hintValue[0]).replace('mm', hintValue[1]).replace('dd', hintValue[2]); } else { hintValue = opts.splitInput ? [val, val, val] : val; } return hintValue; }, month: function(val, opts){ var hintValue = (val || '').split('-'); if(hintValue.length == 2){ hintValue = opts.splitInput ? hintValue : curCfg.date.showMonthAfterYear ? hintValue[0] +' '+hintValue[1] : hintValue[1] +' '+ hintValue[0]; } else { hintValue = opts.splitInput ? [val, val] : val; } return hintValue; } }; var createHelper = (function(){ var types = {}; return function(type){ var input; if(!types[type]){ input = $(''); types[type] = { asNumber: function(val){ var type = (typeof val == 'object') ? 'valueAsDate' : 'value'; return input.prop(type, val).prop('valueAsNumber'); }, asValue: function(val){ var type = (typeof val == 'object') ? 'valueAsDate' : 'valueAsNumber'; return input.prop(type, val).prop('value'); }, asDate: function(val){ var type = (typeof val == 'number') ? 'valueAsNumber' : 'value'; return input.prop(type, val).prop('valueAsDate'); }, isValid: function(val, attrs){ if(attrs && (attrs.nodeName || attrs.jquery)){ attrs = { min: $(attrs).prop('min') || '', max: $(attrs).prop('max') || '', step: $(attrs).prop('step') || 'any' }; } attrs = $.extend({step: 'any', min: '', max: ''}, attrs || {}); return input.attr(attrs).prop('value', val).is(':valid') && input.prop('value') == val; } }; } return types[type]; }; })(); steps.range = steps.number; var wsWidgetProto = { _create: function(){ var i, that, timedMirror; var o = this.options; var createOpts = this.createOpts; this.type = o.type; this.orig = o.orig; this.buttonWrapper = $('').insertAfter(this.element); this.options.containerElements.push(this.buttonWrapper[0]); o.mirrorValidity = o.mirrorValidity && this.orig && hasFormValidation; if(o.splitInput && this._addSplitInputs){ if(o.monthSelect){ this.element.addClass('ws-month-select'); } this._addSplitInputs(); } else { this.inputElements = this.element; } if( steps[this.type] && typeof steps[this.type].start == 'object'){ steps[this.type].start = this.asNumber(steps[this.type].start); } for(i = 0; i < createOpts.length; i++){ if(o[createOpts[i]] != null){ this[createOpts[i]](o[createOpts[i]], o[createOpts[i]]); } } if(this.type == 'color'){ this.inputElements.prop('maxLength', 7); } this.addBindings(); $(this.element).data('wsWidget'+o.type, this); if(o.buttonOnly){ this.inputElements.prop({readOnly: true}); } this._init = true; if(o.mirrorValidity){ that = this; timedMirror = function(){ clearTimeout(timedMirror._timerDealy); timedMirror._timerDealy = setTimeout(timedMirror._wsexec, 9); }; timedMirror._wsexec = function(){ clearTimeout(timedMirror._timerDealy); that.mirrorValidity(true); }; timedMirror(); $(this.orig).on('change input', function(e){ if(e.type == 'input'){ timedMirror(); } else { timedMirror._wsexec(); } }); } }, mirrorValidity: function(_noTest){ // if(this._init && this.options.mirrorValidity){ if(!_noTest){ $.prop(this.orig, 'validity'); } var message = $(this.orig).getErrorMessage(); if(message !== this.lastErrorMessage){ this.inputElements.prop('setCustomValidity', function(i, val){ if(val._supvalue){ val._supvalue.call(this, message); } }); this.lastErrorMessage = message; } } }, addBindings: function(){ var that = this; var o = this.options; var run = function(){ that._addBindings(); }; if(this._addBindings){ run(); } else { webshims.ready('forms-picker', run); loadPicker(this.type, 'WINDOWLOAD'); } this.inputElements .add(this.buttonWrapper) .add(this.element) .one('mousedown focusin', function(e){ loadPicker(that.type, 'DOM'); }) .on({ 'change input focus focusin blur focusout': function(e){ var oVal, nVal; $(e.target).trigger('ws__'+e.type); if(o.toFixed && o.type == 'number' && e.type == 'change'){ oVal = that.element.prop('value'); nVal = that.toFixed(oVal, true); if(oVal != nVal){ that.element[0].value = nVal; } } } }) ; if(this.type != 'color'){ (function(){ var localeChange, select, selectVal; if(!o.splitInput){ localeChange = function(){ if(o.value){ that.value(o.value, true); } if(placeholderFormat[that.type] && o.placeholder){ that.placeholder(o.placeholder); } }; } else { localeChange = function(){ that.reorderInputs(); if(o.monthSelect){ select = that.inputElements.filter('select.mm'); selectVal = select.prop('value'); select.html(getMonthOptions(o)); select.prop('value', selectVal); } }; that.reorderInputs(); } $(that.orig).onWSOff('wslocalechange', localeChange); })(); } }, required: function(val, boolVal){ this.inputElements.attr({'aria-required': ''+boolVal}); this.mirrorValidity(); }, parseValue: function(noCorrect){ var value = this.inputElements.map(function(){ return $.prop(this, 'value'); }).get(); if(!this.options.splitInput){ value = value[0]; } return parseVal[this.type](value, this.options, noCorrect); }, formatValue: function(val, noSplit){ return formatVal[this.type](val, noSplit === false ? false : this.options); }, createOpts: ['readonly', 'title', 'disabled', 'tabindex', 'placeholder', 'defaultValue', 'value', 'required'], placeholder: function(val){ var options = this.options; options.placeholder = val; var placeholder = val; if(placeholderFormat[this.type]){ placeholder = placeholderFormat[this.type](val, this.options); } if(options.splitInput && typeof placeholder == 'object'){ $.each(this.splits, function(i, elem){ if($.nodeName(elem, 'select')){ $(elem).children('option:first-child').text(placeholder[i]); } else { $.prop(elem, 'placeholder', placeholder[i]); } }); } else { this.element.prop('placeholder', placeholder); } }, list: function(val){ if(this.type == 'number'){ this.element.attr('list', $.attr(this.orig, 'list')); } this.options.list = val; this._propertyChange('list'); }, _propertyChange: $.noop, tabindex: function(val){ this.options.tabindex = val; this.inputElements.prop('tabindex', this.options.tabindex); $('button', this.buttonWrapper).prop('tabindex', this.options.tabindex); }, title: function(val){ if(!val && this.orig && $.attr(this.orig, 'title') == null){ val = null; } this.options.title = val; if(val == null){ this.inputElements.removeAttr('title'); } else { this.inputElements.prop('title', this.options.title); } } }; ['defaultValue', 'value'].forEach(function(name){ wsWidgetProto[name] = function(val, force){ if(!this._init || force || val !== this.options[name]){ this.element.prop(name, this.formatValue(val)); this.options[name] = val; this._propertyChange(name); this.mirrorValidity(); } }; }); ['readonly', 'disabled'].forEach(function(name){ var isDisabled = name == 'disabled'; wsWidgetProto[name] = function(val, boolVal){ var options = this.options; if(options[name] != boolVal || !this._init){ options[name] = !!boolVal; if(!isDisabled && options.buttonOnly){ this.inputElements.attr({'aria-readonly': options[name]}); } else { this.inputElements.prop(name, options[name]); } this.buttonWrapper[options[name] ? 'addClass' : 'removeClass']('ws-'+name); if(isDisabled){ $('button', this.buttonWrapper).prop('disabled', options[name]); } } }; }); var spinBtnProto = $.extend({}, wsWidgetProto, { _create: function(){ var o = this.options; var helper = createHelper(o.type); this.elemHelper = $(''); this.asNumber = helper.asNumber; this.asValue = helper.asValue; this.isValid = helper.isValid; this.asDate = helper.asDate; wsWidgetProto._create.apply(this, arguments); this._init = false; this.buttonWrapper.html(''); if(this.type == 'number'){ this.inputElements.attr('inputmode', 'numeric'); } if((!o.max && typeof o.relMax == 'number') || (!o.min && typeof o.relMin == 'number')){ webshims.error('relMax/relMin are not supported anymore calculate at set it your own.'); } if(this.options.relDefaultValue){ webshims.warn('relDefaultValue was removed use startValue instead!'); } this._init = true; }, createOpts: ['step', 'min', 'max', 'readonly', 'title', 'disabled', 'tabindex', 'placeholder', 'defaultValue', 'value', 'required'], _addSplitInputs: function(){ if(!this.inputElements){ var create = splitInputs[this.type]._create(this.options); this.splits = create.splits; this.inputElements = $(create.elements).prependTo(this.element).filter('input, select'); } }, addZero: addZero, _setStartInRange: function(){ var start = this.options.startValue && this.asNumber( this.options.startValue ) || steps[this.type].start || 0; if(!isNaN(this.minAsNumber) && start < this.minAsNumber){ start = this.minAsNumber; } else if(!isNaN(this.maxAsNumber) && start > this.maxAsNumber){ start = this.maxAsNumber; } try { this.elemHelper.prop('valueAsNumber', start); } catch(e){ webshims.warn('valueAsNumber set: '+e); } this.options.defValue = this.elemHelper.prop('value'); }, reorderInputs: function(){ if(splitInputs[this.type]){ var element = this.element.attr('dir', curCfg.date.isRTL ? 'rtl' : 'ltr'); splitInputs[this.type].sort(element, this.options); setTimeout(function(){ var data = webshims.data(element); if(data && data.shadowData){ data.shadowData.shadowFocusElement = element.find('input, select')[0] || element[0]; } }, 9); } }, step: function(val){ var defStep = steps[this.type]; this.options.step = val; this.elemHelper.prop('step', retDefault(val, defStep.step)); this.mirrorValidity(); }, _beforeValue: function(val){ this.valueAsNumber = this.asNumber(val); this.options.value = val; if(isNaN(this.valueAsNumber) || (!isNaN(this.minAsNumber) && this.valueAsNumber < this.minAsNumber) || (!isNaN(this.maxAsNumber) && this.valueAsNumber > this.maxAsNumber)){ this._setStartInRange(); } else { this.elemHelper.prop('value', val); this.options.defValue = ""; } }, toFixed: function(val, force){ var o = this.options; if(o.toFixed && o.type == 'number' && val && !isNaN(this.valueAsNumber) && (force || !this.element.is(':focus')) && (!o.fixOnlyFloat || (this.valueAsNumber % 1))){ val = formatVal[this.type](this.valueAsNumber.toFixed(o.toFixed), this.options); } return val; } }); ['defaultValue', 'value'].forEach(function(name){ var isValue = name == 'value'; spinBtnProto[name] = function(val, force, isLive){ var selectionEnd; if(!this._init || force || this.options[name] !== val){ if(isValue){ this._beforeValue(val); } else { this.elemHelper.prop(name, val); } val = formatVal[this.type](val, this.options); if(this.options.splitInput){ $.each(this.splits, function(i, elem){ var setOption; if(!(name in elem) && !isValue && $.nodeName(elem, 'select')){ $('option[value="'+ val[i] +'"]', elem).prop('defaultSelected', true); } else { $.prop(elem, name, val[i]); } }); } else { val = this.toFixed(val); if(isLive && this._getSelectionEnd){ selectionEnd = this._getSelectionEnd(val); } this.element.prop(name, val); if(selectionEnd != null){ this.element.prop('selectionEnd', selectionEnd); } } this._propertyChange(name); this.mirrorValidity(); } }; }); $.each({min: 1, max: -1}, function(name, factor){ var numName = name +'AsNumber'; spinBtnProto[name] = function(val){ this.elemHelper.prop(name, val); this[numName] = this.asNumber(val); if(this.valueAsNumber != null && (isNaN(this.valueAsNumber) || (!isNaN(this[numName]) && (this.valueAsNumber * factor) < (this[numName] * factor)))){ this._setStartInRange(); } this.options[name] = val; if(this._init){ createYearSelect({elements: this.inputElements}, this.options); } this._propertyChange(name); this.mirrorValidity(); }; }); $.fn.wsBaseWidget = function(opts){ opts = $.extend({}, opts); return this.each(function(){ webshims.objectCreate(wsWidgetProto, { element: { value: $(this) } }, opts); }); }; $.fn.wsBaseWidget.wsProto = wsWidgetProto; $.fn.spinbtnUI = function(opts){ opts = $.extend({ monthNames: 'monthNamesShort' }, opts); return this.each(function(){ webshims.objectCreate(spinBtnProto, { element: { value: $(this) } }, opts); }); }; $.fn.spinbtnUI.wsProto = spinBtnProto; webshims._format = formatVal; })(); if(!$.fn.wsTouchClick){ $.fn.wsTouchClick = (function(){ var supportsTouchaction = ('touchAction' in document.documentElement.style); var addTouch = !supportsTouchaction && ('ontouchstart' in window) && document.addEventListener; return function(target, handler){ var touchData, touchEnd, touchStart, stopClick, allowClick; var runHandler = function(){ if(!stopClick){ return handler.apply(this, arguments); } }; if(addTouch){ allowClick = function(){ stopClick = false; }; touchEnd = function(e){ var ret, touch; e = e.originalEvent || {}; $(this).off('touchend touchcancel', touchEnd); var changedTouches = e.changedTouches || e.touches; if(e.type == 'touchcancel' || !touchData || !changedTouches || changedTouches.length != 1){ return; } touch = changedTouches[0]; if(Math.abs(touchData.x - touch.pageX) > 40 || Math.abs(touchData.y - touch.pageY) > 40 || Date.now() - touchData.now > 300){ return; } e.preventDefault(); stopClick = true; setTimeout(allowClick, 400); ret = handler.apply(this, arguments); return ret; }; touchStart = function(e){ var touch, elemTarget; if((!e || e.touches.length != 1)){ return; } touch = e.touches[0]; elemTarget = target ? $(touch.target).closest(target) : $(this); if(!elemTarget.length){ return; } touchData = { x: touch.pageX, y: touch.pageY, now: Date.now() }; elemTarget.on('touchend touchcancel', touchEnd); }; this.each(function(){ this.addEventListener('touchstart', touchStart, true); }); } else if(supportsTouchaction){ this.css('touch-action', 'manipulation'); } if($.isFunction(target)){ handler = target; target = false; this.on('click', runHandler); } else { this.on('click', target, runHandler); } return this; }; })(); } (function(){ var picker = {}; var modern = window.Modernizr; var assumeVirtualKeyBoard = (modern && (modern.touchevents || modern.touch)) || (/android|iphone|ipad|ipod|blackberry|iemobile/i.test(navigator.userAgent.toLowerCase())); webshims.inlinePopover = { _create: function(){ this.element = $('