0byt3m1n1
Path:
/
data
/
applications
/
aps
/
phprojekt
/
6.0.6-0
/
standard
/
htdocs
/
htdocs
/
dojo
/
dijit
/
form
/
[
Home
]
File: _DateTimeTextBox.js
/* Copyright (c) 2004-2010, The Dojo Foundation All Rights Reserved. Available via Academic Free License >= 2.1 OR the modified BSD license. see: http://dojotoolkit.org/license for details */ if(!dojo._hasResource["dijit.form._DateTimeTextBox"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code. dojo._hasResource["dijit.form._DateTimeTextBox"] = true; dojo.provide("dijit.form._DateTimeTextBox"); dojo.require("dojo.date"); dojo.require("dojo.date.locale"); dojo.require("dojo.date.stamp"); dojo.require("dijit.form.ValidationTextBox"); new Date("X"); // workaround for #11279, new Date("") == NaN /*===== dojo.declare( "dijit.form._DateTimeTextBox.__Constraints", [dijit.form.RangeBoundTextBox.__Constraints, dojo.date.locale.__FormatOptions], { // summary: // Specifies both the rules on valid/invalid values (first/last date/time allowed), // and also formatting options for how the date/time is displayed. // example: // To restrict to dates within 2004, displayed in a long format like "December 25, 2005": // | {min:'2004-01-01',max:'2004-12-31', formatLength:'long'} }); =====*/ dojo.declare( "dijit.form._DateTimeTextBox", dijit.form.RangeBoundTextBox, { // summary: // Base class for validating, serializable, range-bound date or time text box. // constraints: dijit.form._DateTimeTextBox.__Constraints // Despite the name, this parameter specifies both constraints on the input // (including starting/ending dates/times allowed) as well as // formatting options like whether the date is displayed in long (ex: December 25, 2005) // or short (ex: 12/25/2005) format. See `dijit.form._DateTimeTextBox.__Constraints` for details. /*===== constraints: {}, ======*/ // Override ValidationTextBox.regExpGen().... we use a reg-ex generating function rather // than a straight regexp to deal with locale (plus formatting options too?) regExpGen: dojo.date.locale.regexp, // datePackage: String // JavaScript namespace to find calendar routines. Uses Gregorian calendar routines // at dojo.date, by default. datePackage: "dojo.date", // Override _FormWidget.compare() to work for dates/times compare: dojo.date.compare, format: function(/*Date*/ value, /*dojo.date.locale.__FormatOptions*/ constraints){ // summary: // Formats the value as a Date, according to specified locale (second argument) // tags: // protected if(!value){ return ''; } return this.dateLocaleModule.format(value, constraints); }, parse: function(/*String*/ value, /*dojo.date.locale.__FormatOptions*/ constraints){ // summary: // Parses as string as a Date, according to constraints // tags: // protected return this.dateLocaleModule.parse(value, constraints) || (this._isEmpty(value) ? null : undefined); // Date }, // Overrides ValidationTextBox.serialize() to serialize a date in canonical ISO format. serialize: function(/*anything*/val, /*Object?*/options){ if(val.toGregorian){ val = val.toGregorian(); } return dojo.date.stamp.toISOString(val, options); }, // value: Date // The value of this widget as a JavaScript Date object. Use get("value") / set("value", val) to manipulate. // When passed to the parser in markup, must be specified according to `dojo.date.stamp.fromISOString` value: new Date(""), // value.toString()="NaN" _blankValue: null, // used by filter() when the textbox is blank // popupClass: [protected extension] String // Name of the popup widget class used to select a date/time. // Subclasses should specify this. popupClass: "", // default is no popup = text only // _selector: [protected extension] String // Specifies constraints.selector passed to dojo.date functions, should be either // "date" or "time". // Subclass must specify this. _selector: "", constructor: function(/*Object*/args){ var dateClass = args.datePackage ? args.datePackage + ".Date" : "Date"; this.dateClassObj = dojo.getObject(dateClass, false); this.value = new this.dateClassObj(""); this.datePackage = args.datePackage || this.datePackage; this.dateLocaleModule = dojo.getObject(this.datePackage + ".locale", false); this.regExpGen = this.dateLocaleModule.regexp; }, _setConstraintsAttr: function(/* Object */ constraints){ constraints.selector = this._selector; constraints.fullYear = true; // see #5465 - always format with 4-digit years var fromISO = dojo.date.stamp.fromISOString; if(typeof constraints.min == "string"){ constraints.min = fromISO(constraints.min); } if(typeof constraints.max == "string"){ constraints.max = fromISO(constraints.max); } this.inherited(arguments, [constraints]); }, _onFocus: function(/*Event*/ evt){ // summary: // open the popup this._open(); this.inherited(arguments); }, _setValueAttr: function(/*Date*/ value, /*Boolean?*/ priorityChange, /*String?*/ formattedValue){ // summary: // Sets the date on this textbox. Note that `value` must be like a Javascript Date object. if(value !== undefined){ if(!value || value.toString() == dijit.form._DateTimeTextBox.prototype.value.toString()){ value = null; } if(value instanceof Date && !(this.dateClassObj instanceof Date)){ value = new this.dateClassObj(value); } } this.inherited(arguments, [value, priorityChange, formattedValue]); if(this._picker){ // #3948: fix blank date on popup only if(!value){value = new this.dateClassObj();} this._picker.set('value', value); } }, _open: function(){ // summary: // opens the TimePicker, and sets the onValueSelected value if(this.disabled || this.readOnly || !this.popupClass){return;} var textBox = this; if(!this._picker){ var PopupProto = dojo.getObject(this.popupClass, false); this._picker = new PopupProto({ onValueSelected: function(value){ if(textBox._tabbingAway){ delete textBox._tabbingAway; }else{ textBox.focus(); // focus the textbox before the popup closes to avoid reopening the popup } setTimeout(dojo.hitch(textBox, "_close"), 1); // allow focus time to take // this will cause InlineEditBox and other handlers to do stuff so make sure it's last dijit.form._DateTimeTextBox.superclass._setValueAttr.call(textBox, value, true); }, id: this.id + "_popup", dir: textBox.dir, lang: textBox.lang, value: this.get('value') || new this.dateClassObj(), constraints: textBox.constraints, datePackage: textBox.datePackage, isDisabledDate: function(/*Date*/ date){ // summary: // disables dates outside of the min/max of the _DateTimeTextBox var compare = dojo.date.compare; var constraints = textBox.constraints; return constraints && ( (constraints.min && compare(constraints.min, date, textBox._selector) > 0) || (constraints.max && compare(constraints.max, date, textBox._selector) < 0) ); } }); } if(!this._opened){ // Open drop down. Align left sides of input box and drop down, even in RTL mode, // otherwise positioning thrown off when the drop down width is changed in marginBox call below (#10676) dijit.popup.open({ parent: this, popup: this._picker, orient: {'BL':'TL', 'TL':'BL'}, around: this.domNode, onCancel: dojo.hitch(this, this._close), onClose: function(){ textBox._opened=false; } }); this._opened=true; } dojo.marginBox(this._picker.domNode,{ w:this.domNode.offsetWidth }); }, _close: function(){ if(this._opened){ dijit.popup.close(this._picker); this._opened=false; } }, _onBlur: function(){ // summary: // Called magically when focus has shifted away from this widget and it's dropdown this._close(); if(this._picker){ // teardown so that constraints will be rebuilt next time (redundant reference: #6002) this._picker.destroy(); delete this._picker; } this.inherited(arguments); // don't focus on <input>. the user has explicitly focused on something else. }, _getDisplayedValueAttr: function(){ return this.textbox.value; }, _setDisplayedValueAttr: function(/*String*/ value, /*Boolean?*/ priorityChange){ this._setValueAttr(this.parse(value, this.constraints), priorityChange, value); }, destroy: function(){ if(this._picker){ this._picker.destroy(); delete this._picker; } this.inherited(arguments); }, postCreate: function(){ this.inherited(arguments); this.connect(this.focusNode, 'onkeypress', this._onKeyPress); this.connect(this.focusNode, 'onclick', this._open); }, _onKeyPress: function(/*Event*/ e){ // summary: // Handler for keypress events var p = this._picker, dk = dojo.keys; // Handle the key in the picker, if it has a handler. If the handler // returns false, then don't handle any other keys. if(p && this._opened && p.handleKey){ if(p.handleKey(e) === false){ return; } } if(this._opened && e.charOrCode == dk.ESCAPE && !(e.shiftKey || e.ctrlKey || e.altKey || e.metaKey)){ this._close(); dojo.stopEvent(e); }else if(!this._opened && e.charOrCode == dk.DOWN_ARROW){ this._open(); dojo.stopEvent(e); }else if(e.charOrCode === dk.TAB){ this._tabbingAway = true; }else if(this._opened && (e.keyChar || e.charOrCode === dk.BACKSPACE || e.charOrCode == dk.DELETE)){ // Replace the element - but do it after a delay to allow for // filtering to occur setTimeout(dojo.hitch(this, function(){ if(this._picker && this._opened){ dijit.placeOnScreenAroundElement(p.domNode.parentNode, this.domNode, {'BL':'TL', 'TL':'BL'}, p.orient ? dojo.hitch(p, "orient") : null); } }), 1); } } } ); }