Lines Matching refs:_o

50264             opts = instance._o,
50314 if (c === (instance._o.numberOfMonths - 1) ) {
50560 if (!this._o) {
50561 this._o = extend({}, defaults, true);
50564 var opts = extend(this._o, options, true);
50618 …return !isDate(this._d) ? '' : hasMoment ? moment(this._d).format(format || this._o.format) : this…
50655 if (this._o.field) {
50656 this._o.field.value = '';
50657 fireEvent(this._o.field, 'change', { firedBy: this });
50669 var min = this._o.minDate,
50670 max = this._o.maxDate;
50682 if (this._o.field) {
50683 this._o.field.value = this.toString();
50684 fireEvent(this._o.field, 'change', { firedBy: this });
50686 if (!preventOnSelect && typeof this._o.onSelect === 'function') {
50687 this._o.onSelect.call(this, this.getDate());
50717 if (this._o.mainCalendar === 'right') {
50718 this.calendars[0].month += 1 - this._o.numberOfMonths;
50751 for (var c = 1; c < this._o.numberOfMonths; c++) {
50806 this._o.minDate = value;
50807 this._o.minYear = value.getFullYear();
50808 this._o.minMonth = value.getMonth();
50810 this._o.minDate = defaults.minDate;
50811 this._o.minYear = defaults.minYear;
50812 this._o.minMonth = defaults.minMonth;
50813 this._o.startRange = defaults.startRange;
50826 this._o.maxDate = value;
50827 this._o.maxYear = value.getFullYear();
50828 this._o.maxMonth = value.getMonth();
50830 this._o.maxDate = defaults.maxDate;
50831 this._o.maxYear = defaults.maxYear;
50832 this._o.maxMonth = defaults.maxMonth;
50833 this._o.endRange = defaults.endRange;
50841 this._o.startRange = value;
50846 this._o.endRange = value;
50857 var opts = this._o,
50894 if (typeof this._o.onDraw === 'function') {
50895 this._o.onDraw(this);
50908 if (this._o.container) return;
50912 field = this._o.trigger;
50934 if ((this._o.reposition && left + width > viewportWidth) ||
50936 this._o.position.indexOf('right') > -1 &&
50942 if ((this._o.reposition && top + height > viewportHeight + scrollTop) ||
50944 this._o.position.indexOf('top') > -1 &&
50960 var opts = this._o,
51052 if (this._o.bound) {
51056 if (typeof this._o.onOpen === 'function') {
51057 this._o.onOpen.call(this);
51066 if (this._o.bound) {
51074 if (v !== undefined && typeof this._o.onClose === 'function') {
51075 this._o.onClose.call(this);
51089 if (this._o.field) {
51090 removeEvent(this._o.field, 'change', this._onInputChange);
51091 if (this._o.bound) {
51092 removeEvent(this._o.trigger, 'click', this._onInputClick);
51093 removeEvent(this._o.trigger, 'focus', this._onInputFocus);
51094 removeEvent(this._o.trigger, 'blur', this._onInputBlur);