|
|
@ -26599,10 +26599,9 @@ BI.LayerController = BI.inherit(BI.Controller, { |
|
|
|
if (this.has(name)) { |
|
|
|
if (this.has(name)) { |
|
|
|
return this.get(name); |
|
|
|
return this.get(name); |
|
|
|
} |
|
|
|
} |
|
|
|
var widget = BI.createWidget((op.render || {}), { |
|
|
|
var widget = BI.createWidget((op.render || {}), BI.extend({ |
|
|
|
type: "bi.layout", |
|
|
|
type: "bi.layout" |
|
|
|
cls: op.cls |
|
|
|
}, op), context); |
|
|
|
}, context); |
|
|
|
|
|
|
|
var layout = BI.createWidget({ |
|
|
|
var layout = BI.createWidget({ |
|
|
|
type: "bi.absolute", |
|
|
|
type: "bi.absolute", |
|
|
|
items: [{ |
|
|
|
items: [{ |
|
|
@ -89152,7 +89151,11 @@ BI.MonthCombo = BI.inherit(BI.Widget, { |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
getValue: function () { |
|
|
|
getValue: function () { |
|
|
|
return this.popup.getValue(); |
|
|
|
if (BI.isNull(this.popup)) { |
|
|
|
|
|
|
|
return this.options.value || ""; |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
return this.popup.getValue() || ""; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
@ -96802,8 +96805,12 @@ BI.QuarterCombo = BI.inherit(BI.Widget, { |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
getValue: function () { |
|
|
|
getValue: function () { |
|
|
|
|
|
|
|
if (BI.isNull(this.popup)) { |
|
|
|
|
|
|
|
return this.options.value || ""; |
|
|
|
|
|
|
|
} else { |
|
|
|
return this.popup.getValue() || ""; |
|
|
|
return this.popup.getValue() || ""; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
BI.QuarterCombo.EVENT_CONFIRM = "EVENT_CONFIRM"; |
|
|
|
BI.QuarterCombo.EVENT_CONFIRM = "EVENT_CONFIRM"; |
|
|
@ -102316,8 +102323,12 @@ BI.YearCombo = BI.inherit(BI.Widget, { |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
getValue: function () { |
|
|
|
getValue: function () { |
|
|
|
|
|
|
|
if (BI.isNull(this.popup)) { |
|
|
|
|
|
|
|
return this.options.value; |
|
|
|
|
|
|
|
} else { |
|
|
|
return this.popup.getValue(); |
|
|
|
return this.popup.getValue(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
BI.YearCombo.EVENT_CONFIRM = "EVENT_CONFIRM"; |
|
|
|
BI.YearCombo.EVENT_CONFIRM = "EVENT_CONFIRM"; |
|
|
|
BI.YearCombo.EVENT_BEFORE_POPUPVIEW = "EVENT_BEFORE_POPUPVIEW"; |
|
|
|
BI.YearCombo.EVENT_BEFORE_POPUPVIEW = "EVENT_BEFORE_POPUPVIEW"; |
|
|
@ -102576,6 +102587,7 @@ BI.YearMonthCombo = BI.inherit(BI.Widget, { |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
this.month.on(BI.MonthCombo.EVENT_CONFIRM, function () { |
|
|
|
this.month.on(BI.MonthCombo.EVENT_CONFIRM, function () { |
|
|
|
|
|
|
|
self.getValue(); |
|
|
|
self.fireEvent(BI.YearMonthCombo.EVENT_CONFIRM); |
|
|
|
self.fireEvent(BI.YearMonthCombo.EVENT_CONFIRM); |
|
|
|
}); |
|
|
|
}); |
|
|
|
this.month.on(BI.MonthCombo.EVENT_BEFORE_POPUPVIEW, function () { |
|
|
|
this.month.on(BI.MonthCombo.EVENT_BEFORE_POPUPVIEW, function () { |
|
|
|