|
|
@ -26258,6 +26258,16 @@ BI.Pane = BI.inherit(BI.Widget, { |
|
|
|
|
|
|
|
|
|
|
|
_init: function () { |
|
|
|
_init: function () { |
|
|
|
BI.Pane.superclass._init.apply(this, arguments); |
|
|
|
BI.Pane.superclass._init.apply(this, arguments); |
|
|
|
|
|
|
|
if (this.beforeInit) { |
|
|
|
|
|
|
|
this.loading(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_render: function () { |
|
|
|
|
|
|
|
BI.Pane.superclass._render.apply(this, arguments); |
|
|
|
|
|
|
|
if (this.beforeInit) { |
|
|
|
|
|
|
|
this.loaded(); |
|
|
|
|
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
_assertTip: function () { |
|
|
|
_assertTip: function () { |
|
|
@ -75756,6 +75766,7 @@ BI.DisplayTree = BI.inherit(BI.TreeView, { |
|
|
|
selectedMulti: false, |
|
|
|
selectedMulti: false, |
|
|
|
dblClickExpand: false, |
|
|
|
dblClickExpand: false, |
|
|
|
showIcon: false, |
|
|
|
showIcon: false, |
|
|
|
|
|
|
|
nameIsHTML: true, |
|
|
|
showTitle: false |
|
|
|
showTitle: false |
|
|
|
}, |
|
|
|
}, |
|
|
|
data: { |
|
|
|
data: { |
|
|
@ -89416,6 +89427,7 @@ BI.NumberEditor = BI.inherit(BI.Widget, { |
|
|
|
self.fireEvent(BI.NumberEditor.EVENT_CHANGE); |
|
|
|
self.fireEvent(BI.NumberEditor.EVENT_CHANGE); |
|
|
|
}); |
|
|
|
}); |
|
|
|
this.editor.on(BI.TextEditor.EVENT_CONFIRM, function () { |
|
|
|
this.editor.on(BI.TextEditor.EVENT_CONFIRM, function () { |
|
|
|
|
|
|
|
this.setValue(BI.parseFloat(this.getValue())); |
|
|
|
self.fireEvent(BI.NumberEditor.EVENT_CONFIRM); |
|
|
|
self.fireEvent(BI.NumberEditor.EVENT_CONFIRM); |
|
|
|
}); |
|
|
|
}); |
|
|
|
this.topBtn = BI.createWidget({ |
|
|
|
this.topBtn = BI.createWidget({ |
|
|
@ -89726,8 +89738,6 @@ BI.NumberInterval = BI.inherit(BI.Single, { |
|
|
|
self._setComboValueChangedEvent(self.smallCombo); |
|
|
|
self._setComboValueChangedEvent(self.smallCombo); |
|
|
|
self._setEditorValueChangedEvent(self.bigEditor); |
|
|
|
self._setEditorValueChangedEvent(self.bigEditor); |
|
|
|
self._setEditorValueChangedEvent(self.smallEditor); |
|
|
|
self._setEditorValueChangedEvent(self.smallEditor); |
|
|
|
|
|
|
|
|
|
|
|
this.setValue(o.value); |
|
|
|
|
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
_checkValidation: function () { |
|
|
|
_checkValidation: function () { |
|
|
|