|
|
|
@ -19,10 +19,9 @@ BI.TimeInterval = BI.inherit(BI.Single, {
|
|
|
|
|
supportDynamic: true |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
|
var self = this, o = this.options; |
|
|
|
|
BI.TimeInterval.superclass._init.apply(this, arguments); |
|
|
|
|
|
|
|
|
|
render: function () { |
|
|
|
|
var self = this, o = this.options; |
|
|
|
|
o.value = o.value || {}; |
|
|
|
|
this.left = this._createCombo(o.value.start, o.watermark?.start); |
|
|
|
|
this.right = this._createCombo(o.value.end, o.watermark?.end); |
|
|
|
|