Sha256: 89528b16a13faedb45b025c7142dbbcaaab2197cd86821b3a8d404d76a7036da
Contents?: true
Size: 1.71 KB
Versions: 1
Compression:
Stored size: 1.71 KB
Contents
define("dojox/mobile/ValuePickerDatePicker", [ "dojo/_base/declare", "dojo/dom-class", "./_DatePickerMixin", "./ValuePicker", "./ValuePickerSlot" ], function(declare, domClass, DatePickerMixin, ValuePicker, ValuePickerSlot){ // module: // dojox/mobile/ValuePickerDatePicker return declare("dojox.mobile.ValuePickerDatePicker", [ValuePicker, DatePickerMixin], { // summary: // A ValuePicker-based date picker widget. // description: // ValuePickerDatePicker is a date picker widget. It is a subclass of // dojox/mobile/ValuePicker. It has 3 slots: day, month and year. // readOnly: Boolean // If true, slot input fields are read-only. Only the plus and // minus buttons can be used to change the values. readOnly: false, slotClasses: [ ValuePickerSlot, ValuePickerSlot, ValuePickerSlot ], slotProps: [ {labelFrom:1970, labelTo:2038, style:{width:"87px"}}, {style:{width:"72px"}}, {style:{width:"72px"}} ], buildRendering: function(){ var p = this.slotProps; p[0].readOnly = p[1].readOnly = p[2].readOnly = this.readOnly; this.initSlots(); this.inherited(arguments); domClass.add(this.domNode, "mblValuePickerDatePicker"); this._conn = [ this.connect(this.slots[0], "_setValueAttr", "onYearSet"), this.connect(this.slots[1], "_setValueAttr", "onMonthSet"), this.connect(this.slots[2], "_setValueAttr", "onDaySet") ]; }, disableValues: function(/*Number*/daysInMonth){ // summary: // Disables month end days that are not on the month. var items = this.slots[2].items; if(this._tail){ this.slots[2].items = items = items.concat(this._tail); } this._tail = items.slice(daysInMonth); items.splice(daysInMonth); } }); });
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dojox-rails-0.11.0 | vendor/assets/javascripts/mobile/ValuePickerDatePicker.js.uncompressed.js |