|
|
@ -14,10 +14,8 @@ BI.YearMonthInterval = BI.inherit(BI.Single, { |
|
|
|
height: 24 |
|
|
|
height: 24 |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
_init: function () { |
|
|
|
render: function () { |
|
|
|
var self = this, o = this.options; |
|
|
|
var self = this, o = this.options; |
|
|
|
BI.YearMonthInterval.superclass._init.apply(this, arguments); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
o.value = o.value || {}; |
|
|
|
o.value = o.value || {}; |
|
|
|
this.left = this._createCombo(o.value.start, o.watermark?.start); |
|
|
|
this.left = this._createCombo(o.value.start, o.watermark?.start); |
|
|
|
this.right = this._createCombo(o.value.end, o.watermark?.end); |
|
|
|
this.right = this._createCombo(o.value.end, o.watermark?.end); |
|
|
|