|
|
@ -89683,7 +89683,7 @@ BI.StaticYearCard.EVENT_CHANGE = "EVENT_CHANGE"; |
|
|
|
BI.shortcut("bi.static_year_card", BI.StaticYearCard);BI.DynamicYearCombo = BI.inherit(BI.Widget, { |
|
|
|
BI.shortcut("bi.static_year_card", BI.StaticYearCard);BI.DynamicYearCombo = BI.inherit(BI.Widget, { |
|
|
|
|
|
|
|
|
|
|
|
props: { |
|
|
|
props: { |
|
|
|
baseCls: "bi-year-combo", |
|
|
|
baseCls: "bi-year-combo bi-border", |
|
|
|
behaviors: {}, |
|
|
|
behaviors: {}, |
|
|
|
min: "1900-01-01", // 最小日期
|
|
|
|
min: "1900-01-01", // 最小日期
|
|
|
|
max: "2099-12-31", // 最大日期
|
|
|
|
max: "2099-12-31", // 最大日期
|
|
|
@ -89728,7 +89728,6 @@ BI.shortcut("bi.static_year_card", BI.StaticYearCard);BI.DynamicYearCombo = BI.i |
|
|
|
|
|
|
|
|
|
|
|
this.combo = BI.createWidget({ |
|
|
|
this.combo = BI.createWidget({ |
|
|
|
type: "bi.combo", |
|
|
|
type: "bi.combo", |
|
|
|
element: this, |
|
|
|
|
|
|
|
isNeedAdjustHeight: false, |
|
|
|
isNeedAdjustHeight: false, |
|
|
|
isNeedAdjustWidth: false, |
|
|
|
isNeedAdjustWidth: false, |
|
|
|
el: this.trigger, |
|
|
|
el: this.trigger, |
|
|
@ -89781,11 +89780,52 @@ BI.shortcut("bi.static_year_card", BI.StaticYearCard);BI.DynamicYearCombo = BI.i |
|
|
|
self.popup.setValue(self.storeValue); |
|
|
|
self.popup.setValue(self.storeValue); |
|
|
|
self.fireEvent(BI.DynamicYearCombo.EVENT_BEFORE_POPUPVIEW); |
|
|
|
self.fireEvent(BI.DynamicYearCombo.EVENT_BEFORE_POPUPVIEW); |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
BI.createWidget({ |
|
|
|
|
|
|
|
type: "bi.htape", |
|
|
|
|
|
|
|
element: this, |
|
|
|
|
|
|
|
ref: function () { |
|
|
|
|
|
|
|
self.comboWrapper = this; |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
items: [{ |
|
|
|
|
|
|
|
el: { |
|
|
|
|
|
|
|
type: "bi.icon_button", |
|
|
|
|
|
|
|
cls: "bi-trigger-icon-button date-change-h-font", |
|
|
|
|
|
|
|
width: 24, |
|
|
|
|
|
|
|
height: 24, |
|
|
|
|
|
|
|
ref: function () { |
|
|
|
|
|
|
|
self.changeIcon = this; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
width: 30 |
|
|
|
|
|
|
|
}, this.combo] |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
this._checkDynamicValue(o.value); |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_checkDynamicValue: function (v) { |
|
|
|
|
|
|
|
var type = null; |
|
|
|
|
|
|
|
if (BI.isNotNull(v)) { |
|
|
|
|
|
|
|
type = v.type; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
switch (type) { |
|
|
|
|
|
|
|
case BI.DynamicYearCombo.Dynamic: |
|
|
|
|
|
|
|
this.changeIcon.setVisible(true); |
|
|
|
|
|
|
|
this.comboWrapper.attr("items")[0].width = 30; |
|
|
|
|
|
|
|
this.comboWrapper.resize(); |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
default: |
|
|
|
|
|
|
|
this.comboWrapper.attr("items")[0].width = 0; |
|
|
|
|
|
|
|
this.comboWrapper.resize(); |
|
|
|
|
|
|
|
this.changeIcon.setVisible(false); |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
setValue: function (v) { |
|
|
|
setValue: function (v) { |
|
|
|
this.storeValue = v; |
|
|
|
this.storeValue = v; |
|
|
|
this.trigger.setValue(v); |
|
|
|
this.trigger.setValue(v); |
|
|
|
|
|
|
|
this._checkDynamicValue(v); |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
getValue: function () { |
|
|
|
getValue: function () { |
|
|
@ -90016,7 +90056,7 @@ BI.shortcut("bi.dynamic_year_popup", BI.DynamicYearPopup);BI.DynamicYearTrigger |
|
|
|
|
|
|
|
|
|
|
|
_defaultConfig: function () { |
|
|
|
_defaultConfig: function () { |
|
|
|
return BI.extend(BI.DynamicYearTrigger.superclass._defaultConfig.apply(this, arguments), { |
|
|
|
return BI.extend(BI.DynamicYearTrigger.superclass._defaultConfig.apply(this, arguments), { |
|
|
|
extraCls: "bi-year-trigger bi-border", |
|
|
|
extraCls: "bi-year-trigger", |
|
|
|
min: "1900-01-01", // 最小日期
|
|
|
|
min: "1900-01-01", // 最小日期
|
|
|
|
max: "2099-12-31", // 最大日期
|
|
|
|
max: "2099-12-31", // 最大日期
|
|
|
|
height: 24 |
|
|
|
height: 24 |
|
|
@ -90036,6 +90076,7 @@ BI.shortcut("bi.dynamic_year_popup", BI.DynamicYearPopup);BI.DynamicYearTrigger |
|
|
|
}, |
|
|
|
}, |
|
|
|
hgap: c.hgap, |
|
|
|
hgap: c.hgap, |
|
|
|
vgap: c.vgap, |
|
|
|
vgap: c.vgap, |
|
|
|
|
|
|
|
watermark: BI.i18nText("BI-Basic_Unrestricted"), |
|
|
|
allowBlank: true, |
|
|
|
allowBlank: true, |
|
|
|
errorText: function (v) { |
|
|
|
errorText: function (v) { |
|
|
|
return !BI.isPositiveInteger(v) ? c.errorText : c.errorTextInvalid; |
|
|
|
return !BI.isPositiveInteger(v) ? c.errorText : c.errorTextInvalid; |
|
|
@ -90077,25 +90118,23 @@ BI.shortcut("bi.dynamic_year_popup", BI.DynamicYearPopup);BI.DynamicYearTrigger |
|
|
|
BI.createWidget({ |
|
|
|
BI.createWidget({ |
|
|
|
element: this, |
|
|
|
element: this, |
|
|
|
type: "bi.htape", |
|
|
|
type: "bi.htape", |
|
|
|
items: [ |
|
|
|
items: [{ |
|
|
|
{ |
|
|
|
el: this.editor |
|
|
|
el: this.editor |
|
|
|
}, { |
|
|
|
}, { |
|
|
|
el: { |
|
|
|
el: { |
|
|
|
type: "bi.text_button", |
|
|
|
type: "bi.text_button", |
|
|
|
baseCls: "bi-trigger-year-text", |
|
|
|
baseCls: "bi-trigger-year-text", |
|
|
|
text: BI.i18nText("BI-Multi_Date_Year"), |
|
|
|
text: BI.i18nText("BI-Multi_Date_Year"), |
|
|
|
|
|
|
|
width: o.height |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
width: o.height |
|
|
|
width: o.height |
|
|
|
}, { |
|
|
|
}, |
|
|
|
el: { |
|
|
|
width: o.height |
|
|
|
type: "bi.trigger_icon_button", |
|
|
|
}, { |
|
|
|
width: o.height |
|
|
|
el: { |
|
|
|
}, |
|
|
|
type: "bi.trigger_icon_button", |
|
|
|
width: o.height |
|
|
|
width: o.height |
|
|
|
} |
|
|
|
}, |
|
|
|
] |
|
|
|
width: o.height |
|
|
|
|
|
|
|
}] |
|
|
|
}); |
|
|
|
}); |
|
|
|
this.setValue(o.value); |
|
|
|
this.setValue(o.value); |
|
|
|
}, |
|
|
|
}, |
|
|
@ -90131,6 +90170,7 @@ BI.shortcut("bi.dynamic_year_popup", BI.DynamicYearPopup);BI.DynamicYearTrigger |
|
|
|
break; |
|
|
|
break; |
|
|
|
case BI.DynamicDateCombo.Static: |
|
|
|
case BI.DynamicDateCombo.Static: |
|
|
|
default: |
|
|
|
default: |
|
|
|
|
|
|
|
value = value || {}; |
|
|
|
this.editor.setState(value.year); |
|
|
|
this.editor.setState(value.year); |
|
|
|
this.editor.setValue(value.year); |
|
|
|
this.editor.setValue(value.year); |
|
|
|
this.editor.setTitle(value.year); |
|
|
|
this.editor.setTitle(value.year); |
|
|
@ -90345,7 +90385,7 @@ BI.StaticYearMonthCard.EVENT_CHANGE = "EVENT_CHANGE"; |
|
|
|
BI.shortcut("bi.static_year_month_card", BI.StaticYearMonthCard);BI.DynamicYearMonthCombo = BI.inherit(BI.Widget, { |
|
|
|
BI.shortcut("bi.static_year_month_card", BI.StaticYearMonthCard);BI.DynamicYearMonthCombo = BI.inherit(BI.Widget, { |
|
|
|
|
|
|
|
|
|
|
|
props: { |
|
|
|
props: { |
|
|
|
baseCls: "bi-year-month-combo", |
|
|
|
baseCls: "bi-year-month-combo bi-border", |
|
|
|
behaviors: {}, |
|
|
|
behaviors: {}, |
|
|
|
min: "1900-01-01", // 最小日期
|
|
|
|
min: "1900-01-01", // 最小日期
|
|
|
|
max: "2099-12-31", // 最大日期
|
|
|
|
max: "2099-12-31", // 最大日期
|
|
|
@ -90381,7 +90421,6 @@ BI.shortcut("bi.static_year_month_card", BI.StaticYearMonthCard);BI.DynamicYearM |
|
|
|
|
|
|
|
|
|
|
|
this.combo = BI.createWidget({ |
|
|
|
this.combo = BI.createWidget({ |
|
|
|
type: "bi.combo", |
|
|
|
type: "bi.combo", |
|
|
|
element: this, |
|
|
|
|
|
|
|
isNeedAdjustHeight: false, |
|
|
|
isNeedAdjustHeight: false, |
|
|
|
isNeedAdjustWidth: false, |
|
|
|
isNeedAdjustWidth: false, |
|
|
|
el: this.trigger, |
|
|
|
el: this.trigger, |
|
|
@ -90434,11 +90473,52 @@ BI.shortcut("bi.static_year_month_card", BI.StaticYearMonthCard);BI.DynamicYearM |
|
|
|
self.popup.setValue(self.storeValue); |
|
|
|
self.popup.setValue(self.storeValue); |
|
|
|
self.fireEvent(BI.DynamicYearMonthCombo.EVENT_BEFORE_POPUPVIEW); |
|
|
|
self.fireEvent(BI.DynamicYearMonthCombo.EVENT_BEFORE_POPUPVIEW); |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
BI.createWidget({ |
|
|
|
|
|
|
|
type: "bi.htape", |
|
|
|
|
|
|
|
element: this, |
|
|
|
|
|
|
|
ref: function () { |
|
|
|
|
|
|
|
self.comboWrapper = this; |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
items: [{ |
|
|
|
|
|
|
|
el: { |
|
|
|
|
|
|
|
type: "bi.icon_button", |
|
|
|
|
|
|
|
cls: "bi-trigger-icon-button date-change-h-font", |
|
|
|
|
|
|
|
width: 24, |
|
|
|
|
|
|
|
height: 24, |
|
|
|
|
|
|
|
ref: function () { |
|
|
|
|
|
|
|
self.changeIcon = this; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
width: 30 |
|
|
|
|
|
|
|
}, this.combo] |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
this._checkDynamicValue(o.value); |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_checkDynamicValue: function (v) { |
|
|
|
|
|
|
|
var type = null; |
|
|
|
|
|
|
|
if (BI.isNotNull(v)) { |
|
|
|
|
|
|
|
type = v.type; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
switch (type) { |
|
|
|
|
|
|
|
case BI.DynamicYearMonthCombo.Dynamic: |
|
|
|
|
|
|
|
this.changeIcon.setVisible(true); |
|
|
|
|
|
|
|
this.comboWrapper.attr("items")[0].width = 30; |
|
|
|
|
|
|
|
this.comboWrapper.resize(); |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
default: |
|
|
|
|
|
|
|
this.comboWrapper.attr("items")[0].width = 0; |
|
|
|
|
|
|
|
this.comboWrapper.resize(); |
|
|
|
|
|
|
|
this.changeIcon.setVisible(false); |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
setValue: function (v) { |
|
|
|
setValue: function (v) { |
|
|
|
this.storeValue = v; |
|
|
|
this.storeValue = v; |
|
|
|
this.trigger.setValue(v); |
|
|
|
this.trigger.setValue(v); |
|
|
|
|
|
|
|
this._checkDynamicValue(v); |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
getValue: function () { |
|
|
|
getValue: function () { |
|
|
@ -90668,7 +90748,7 @@ BI.shortcut("bi.dynamic_year_month_popup", BI.DynamicYearMonthPopup);BI.DynamicY |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
props: { |
|
|
|
props: { |
|
|
|
extraCls: "bi-year-month-trigger bi-border", |
|
|
|
extraCls: "bi-year-month-trigger", |
|
|
|
min: "1900-01-01", // 最小日期
|
|
|
|
min: "1900-01-01", // 最小日期
|
|
|
|
max: "2099-12-31", // 最大日期
|
|
|
|
max: "2099-12-31", // 最大日期
|
|
|
|
height: 24 |
|
|
|
height: 24 |
|
|
@ -90723,11 +90803,15 @@ BI.shortcut("bi.dynamic_year_month_popup", BI.DynamicYearMonthPopup);BI.DynamicY |
|
|
|
type: "bi.sign_editor", |
|
|
|
type: "bi.sign_editor", |
|
|
|
height: o.height, |
|
|
|
height: o.height, |
|
|
|
validationChecker: function (v) { |
|
|
|
validationChecker: function (v) { |
|
|
|
return v === "" || (BI.isPositiveInteger(v) && !BI.checkDateVoid(isYear ? v : BI.getDate().getFullYear(), isYear ? 1 : v, 1, o.min, o.max)[0]); |
|
|
|
if(isYear) { |
|
|
|
|
|
|
|
return v === "" || (BI.isPositiveInteger(v) && !BI.checkDateVoid(v, 1, 1, o.min, o.max)[0]); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return v === "" || ((v >= 1 && v <= 12) && !BI.checkDateVoid(BI.getDate().getFullYear(), v, 1, o.min, o.max)[0]); |
|
|
|
}, |
|
|
|
}, |
|
|
|
quitChecker: function () { |
|
|
|
quitChecker: function () { |
|
|
|
return false; |
|
|
|
return false; |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
watermark: BI.i18nText("BI-Basic_Unrestricted"), |
|
|
|
errorText: function (v) { |
|
|
|
errorText: function (v) { |
|
|
|
return !BI.isPositiveInteger(v) ? c.errorText : c.errorTextInvalid; |
|
|
|
return !BI.isPositiveInteger(v) ? c.errorText : c.errorTextInvalid; |
|
|
|
}, |
|
|
|
}, |
|
|
@ -91031,7 +91115,7 @@ BI.StaticYearQuarterCard.EVENT_CHANGE = "EVENT_CHANGE"; |
|
|
|
BI.shortcut("bi.static_year_quarter_card", BI.StaticYearQuarterCard);BI.DynamicYearQuarterCombo = BI.inherit(BI.Widget, { |
|
|
|
BI.shortcut("bi.static_year_quarter_card", BI.StaticYearQuarterCard);BI.DynamicYearQuarterCombo = BI.inherit(BI.Widget, { |
|
|
|
|
|
|
|
|
|
|
|
props: { |
|
|
|
props: { |
|
|
|
baseCls: "bi-year-quarter-combo", |
|
|
|
baseCls: "bi-year-quarter-combo bi-border", |
|
|
|
behaviors: {}, |
|
|
|
behaviors: {}, |
|
|
|
min: "1900-01-01", // 最小日期
|
|
|
|
min: "1900-01-01", // 最小日期
|
|
|
|
max: "2099-12-31", // 最大日期
|
|
|
|
max: "2099-12-31", // 最大日期
|
|
|
@ -91067,7 +91151,6 @@ BI.shortcut("bi.static_year_quarter_card", BI.StaticYearQuarterCard);BI.DynamicY |
|
|
|
|
|
|
|
|
|
|
|
this.combo = BI.createWidget({ |
|
|
|
this.combo = BI.createWidget({ |
|
|
|
type: "bi.combo", |
|
|
|
type: "bi.combo", |
|
|
|
element: this, |
|
|
|
|
|
|
|
isNeedAdjustHeight: false, |
|
|
|
isNeedAdjustHeight: false, |
|
|
|
isNeedAdjustWidth: false, |
|
|
|
isNeedAdjustWidth: false, |
|
|
|
el: this.trigger, |
|
|
|
el: this.trigger, |
|
|
@ -91120,11 +91203,52 @@ BI.shortcut("bi.static_year_quarter_card", BI.StaticYearQuarterCard);BI.DynamicY |
|
|
|
self.popup.setValue(self.storeValue); |
|
|
|
self.popup.setValue(self.storeValue); |
|
|
|
self.fireEvent(BI.DynamicYearQuarterCombo.EVENT_BEFORE_POPUPVIEW); |
|
|
|
self.fireEvent(BI.DynamicYearQuarterCombo.EVENT_BEFORE_POPUPVIEW); |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
BI.createWidget({ |
|
|
|
|
|
|
|
type: "bi.htape", |
|
|
|
|
|
|
|
element: this, |
|
|
|
|
|
|
|
ref: function () { |
|
|
|
|
|
|
|
self.comboWrapper = this; |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
items: [{ |
|
|
|
|
|
|
|
el: { |
|
|
|
|
|
|
|
type: "bi.icon_button", |
|
|
|
|
|
|
|
cls: "bi-trigger-icon-button date-change-h-font", |
|
|
|
|
|
|
|
width: 24, |
|
|
|
|
|
|
|
height: 24, |
|
|
|
|
|
|
|
ref: function () { |
|
|
|
|
|
|
|
self.changeIcon = this; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
width: 30 |
|
|
|
|
|
|
|
}, this.combo] |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
this._checkDynamicValue(o.value); |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_checkDynamicValue: function (v) { |
|
|
|
|
|
|
|
var type = null; |
|
|
|
|
|
|
|
if (BI.isNotNull(v)) { |
|
|
|
|
|
|
|
type = v.type; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
switch (type) { |
|
|
|
|
|
|
|
case BI.DynamicYearQuarterCombo.Dynamic: |
|
|
|
|
|
|
|
this.changeIcon.setVisible(true); |
|
|
|
|
|
|
|
this.comboWrapper.attr("items")[0].width = 30; |
|
|
|
|
|
|
|
this.comboWrapper.resize(); |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
default: |
|
|
|
|
|
|
|
this.comboWrapper.attr("items")[0].width = 0; |
|
|
|
|
|
|
|
this.comboWrapper.resize(); |
|
|
|
|
|
|
|
this.changeIcon.setVisible(false); |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
setValue: function (v) { |
|
|
|
setValue: function (v) { |
|
|
|
this.storeValue = v; |
|
|
|
this.storeValue = v; |
|
|
|
this.trigger.setValue(v); |
|
|
|
this.trigger.setValue(v); |
|
|
|
|
|
|
|
this._checkDynamicValue(v); |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
getValue: function () { |
|
|
|
getValue: function () { |
|
|
@ -91347,7 +91471,7 @@ BI.shortcut("bi.dynamic_year_quarter_popup", BI.DynamicYearQuarterPopup);BI.Dyna |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
props: { |
|
|
|
props: { |
|
|
|
extraCls: "bi-year-quarter-trigger bi-border", |
|
|
|
extraCls: "bi-year-quarter-trigger", |
|
|
|
min: "1900-01-01", // 最小日期
|
|
|
|
min: "1900-01-01", // 最小日期
|
|
|
|
max: "2099-12-31", // 最大日期
|
|
|
|
max: "2099-12-31", // 最大日期
|
|
|
|
height: 24 |
|
|
|
height: 24 |
|
|
@ -91402,7 +91526,10 @@ BI.shortcut("bi.dynamic_year_quarter_popup", BI.DynamicYearQuarterPopup);BI.Dyna |
|
|
|
type: "bi.sign_editor", |
|
|
|
type: "bi.sign_editor", |
|
|
|
height: o.height, |
|
|
|
height: o.height, |
|
|
|
validationChecker: function (v) { |
|
|
|
validationChecker: function (v) { |
|
|
|
return v === "" || (BI.isPositiveInteger(v) && !BI.checkDateVoid(isYear ? v : BI.getDate().getFullYear(), isYear ? 1 : v, 1, o.min, o.max)[0]); |
|
|
|
if(isYear) { |
|
|
|
|
|
|
|
return v === "" || (BI.isPositiveInteger(v) && !BI.checkDateVoid(v, 1, 1, o.min, o.max)[0]); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return v === "" || ((v >= 1 && v <= 4) && !BI.checkDateVoid(BI.getDate().getFullYear(), v, 1, o.min, o.max)[0]); |
|
|
|
}, |
|
|
|
}, |
|
|
|
quitChecker: function () { |
|
|
|
quitChecker: function () { |
|
|
|
return false; |
|
|
|
return false; |
|
|
@ -91410,6 +91537,7 @@ BI.shortcut("bi.dynamic_year_quarter_popup", BI.DynamicYearQuarterPopup);BI.Dyna |
|
|
|
errorText: function (v) { |
|
|
|
errorText: function (v) { |
|
|
|
return !BI.isPositiveInteger(v) ? c.errorText : c.errorTextInvalid; |
|
|
|
return !BI.isPositiveInteger(v) ? c.errorText : c.errorTextInvalid; |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
watermark: BI.i18nText("BI-Basic_Unrestricted"), |
|
|
|
hgap: c.hgap, |
|
|
|
hgap: c.hgap, |
|
|
|
vgap: c.vgap, |
|
|
|
vgap: c.vgap, |
|
|
|
allowBlank: true |
|
|
|
allowBlank: true |
|
|
@ -91912,6 +92040,17 @@ BI.extend(BI.DynamicDateCard, { |
|
|
|
return { |
|
|
|
return { |
|
|
|
type: "bi.htape", |
|
|
|
type: "bi.htape", |
|
|
|
items: [{ |
|
|
|
items: [{ |
|
|
|
|
|
|
|
el: { |
|
|
|
|
|
|
|
type: "bi.icon_button", |
|
|
|
|
|
|
|
cls: "bi-trigger-icon-button date-change-h-font", |
|
|
|
|
|
|
|
width: 24, |
|
|
|
|
|
|
|
height: 24, |
|
|
|
|
|
|
|
ref: function () { |
|
|
|
|
|
|
|
self.changeIcon = this; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
width: 30 |
|
|
|
|
|
|
|
}, { |
|
|
|
type: "bi.absolute", |
|
|
|
type: "bi.absolute", |
|
|
|
items: [{ |
|
|
|
items: [{ |
|
|
|
el: { |
|
|
|
el: { |
|
|
@ -92074,19 +92213,8 @@ BI.extend(BI.DynamicDateCard, { |
|
|
|
}] |
|
|
|
}] |
|
|
|
}, |
|
|
|
}, |
|
|
|
top: 0, |
|
|
|
top: 0, |
|
|
|
left: 0 |
|
|
|
right: 0 |
|
|
|
}] |
|
|
|
}] |
|
|
|
}, { |
|
|
|
|
|
|
|
el: { |
|
|
|
|
|
|
|
type: "bi.icon_button", |
|
|
|
|
|
|
|
cls: "bi-trigger-icon-button date-change-h-font", |
|
|
|
|
|
|
|
width: 24, |
|
|
|
|
|
|
|
height: 24, |
|
|
|
|
|
|
|
ref: function () { |
|
|
|
|
|
|
|
self.changeIcon = this; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
width: 30 |
|
|
|
|
|
|
|
}], |
|
|
|
}], |
|
|
|
ref: function (_ref) { |
|
|
|
ref: function (_ref) { |
|
|
|
self.comboWrapper = _ref; |
|
|
|
self.comboWrapper = _ref; |
|
|
@ -92106,11 +92234,11 @@ BI.extend(BI.DynamicDateCard, { |
|
|
|
switch (type) { |
|
|
|
switch (type) { |
|
|
|
case BI.DynamicDateCombo.Dynamic: |
|
|
|
case BI.DynamicDateCombo.Dynamic: |
|
|
|
this.changeIcon.setVisible(true); |
|
|
|
this.changeIcon.setVisible(true); |
|
|
|
this.comboWrapper.attr("items")[1].width = 30; |
|
|
|
this.comboWrapper.attr("items")[0].width = 30; |
|
|
|
this.comboWrapper.resize(); |
|
|
|
this.comboWrapper.resize(); |
|
|
|
break; |
|
|
|
break; |
|
|
|
default: |
|
|
|
default: |
|
|
|
this.comboWrapper.attr("items")[1].width = 0; |
|
|
|
this.comboWrapper.attr("items")[0].width = 0; |
|
|
|
this.comboWrapper.resize(); |
|
|
|
this.comboWrapper.resize(); |
|
|
|
this.changeIcon.setVisible(false); |
|
|
|
this.changeIcon.setVisible(false); |
|
|
|
break; |
|
|
|
break; |
|
|
@ -92171,6 +92299,13 @@ BI.extend(BI.DynamicDateCombo, { |
|
|
|
ref: function () { |
|
|
|
ref: function () { |
|
|
|
self.editor = this; |
|
|
|
self.editor = this; |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
errorText: function (v) { |
|
|
|
|
|
|
|
if(BI.isEmptyString(v)) { |
|
|
|
|
|
|
|
return BI.i18nText("BI-Basic_Input_Can_Not_Null"); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return BI.i18nText("BI-Please_Input_Positive_Integer"); |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
allowBlank: false, |
|
|
|
listeners: [{ |
|
|
|
listeners: [{ |
|
|
|
eventName: BI.SignEditor.EVENT_CONFIRM, |
|
|
|
eventName: BI.SignEditor.EVENT_CONFIRM, |
|
|
|
action: function () { |
|
|
|
action: function () { |
|
|
@ -92559,10 +92694,10 @@ BI.shortcut("bi.dynamic_date_popup", BI.DynamicDatePopup);BI.DynamicDateTrigger |
|
|
|
type: "bi.htape", |
|
|
|
type: "bi.htape", |
|
|
|
element: this, |
|
|
|
element: this, |
|
|
|
items: [{ |
|
|
|
items: [{ |
|
|
|
|
|
|
|
el: this.editor |
|
|
|
|
|
|
|
}, { |
|
|
|
el: BI.createWidget(), |
|
|
|
el: BI.createWidget(), |
|
|
|
width: 30 |
|
|
|
width: 30 |
|
|
|
}, { |
|
|
|
|
|
|
|
el: this.editor |
|
|
|
|
|
|
|
}] |
|
|
|
}] |
|
|
|
}); |
|
|
|
}); |
|
|
|
this.setValue(o.value); |
|
|
|
this.setValue(o.value); |
|
|
@ -110399,5 +110534,6 @@ BI.i18n = { |
|
|
|
"BI-Basic_Current_Month": "本月", |
|
|
|
"BI-Basic_Current_Month": "本月", |
|
|
|
"BI-Basic_Current_Quarter": "本季度", |
|
|
|
"BI-Basic_Current_Quarter": "本季度", |
|
|
|
"BI-Basic_Year_Month": "年月", |
|
|
|
"BI-Basic_Year_Month": "年月", |
|
|
|
"BI-Basic_Year_Quarter": "年季度" |
|
|
|
"BI-Basic_Year_Quarter": "年季度", |
|
|
|
|
|
|
|
"BI-Basic_Input_Can_Not_Null": "输入框不能为空" |
|
|
|
}; |
|
|
|
}; |