|
|
@ -66173,7 +66173,7 @@ BI.shortcut("bi.dynamic_date_time_popup", BI.DynamicDateTimePopup);BI.DynamicDat |
|
|
|
}, { |
|
|
|
}, { |
|
|
|
eventName: BI.SignEditor.EVENT_CHANGE, |
|
|
|
eventName: BI.SignEditor.EVENT_CHANGE, |
|
|
|
action: function () { |
|
|
|
action: function () { |
|
|
|
var value = self._autoSwitch(this.getValue(), BI.DynamicDateTimeSelect.HOUR); |
|
|
|
var value = self._autoSwitch(this.getLastChangedValue(), BI.DynamicDateTimeSelect.HOUR); |
|
|
|
this.setValue(value); |
|
|
|
this.setValue(value); |
|
|
|
} |
|
|
|
} |
|
|
|
}], |
|
|
|
}], |
|
|
@ -66209,7 +66209,7 @@ BI.shortcut("bi.dynamic_date_time_popup", BI.DynamicDateTimePopup);BI.DynamicDat |
|
|
|
}, { |
|
|
|
}, { |
|
|
|
eventName: BI.SignEditor.EVENT_CHANGE, |
|
|
|
eventName: BI.SignEditor.EVENT_CHANGE, |
|
|
|
action: function () { |
|
|
|
action: function () { |
|
|
|
var value = self._autoSwitch(this.getValue(), BI.DynamicDateTimeSelect.MINUTE); |
|
|
|
var value = self._autoSwitch(this.getLastChangedValue(), BI.DynamicDateTimeSelect.MINUTE); |
|
|
|
this.setValue(value); |
|
|
|
this.setValue(value); |
|
|
|
} |
|
|
|
} |
|
|
|
}], |
|
|
|
}], |
|
|
@ -75934,6 +75934,8 @@ BI.MultiTreeCombo = BI.inherit(BI.Single, { |
|
|
|
type: "bi.multi_select_trigger", |
|
|
|
type: "bi.multi_select_trigger", |
|
|
|
height: o.height, |
|
|
|
height: o.height, |
|
|
|
valueFormatter: o.valueFormatter, |
|
|
|
valueFormatter: o.valueFormatter, |
|
|
|
|
|
|
|
text: o.text, |
|
|
|
|
|
|
|
watermark: o.watermark, |
|
|
|
// adapter: this.popup,
|
|
|
|
// adapter: this.popup,
|
|
|
|
masker: { |
|
|
|
masker: { |
|
|
|
offset: this.constants.offset |
|
|
|
offset: this.constants.offset |
|
|
@ -76529,6 +76531,7 @@ BI.MultiTreeListCombo = BI.inherit(BI.Single, { |
|
|
|
type: "bi.multi_select_trigger", |
|
|
|
type: "bi.multi_select_trigger", |
|
|
|
allowEdit: o.allowEdit, |
|
|
|
allowEdit: o.allowEdit, |
|
|
|
text: o.text, |
|
|
|
text: o.text, |
|
|
|
|
|
|
|
watermark: o.watermark, |
|
|
|
height: o.height, |
|
|
|
height: o.height, |
|
|
|
valueFormatter: o.valueFormatter, |
|
|
|
valueFormatter: o.valueFormatter, |
|
|
|
// adapter: this.popup,
|
|
|
|
// adapter: this.popup,
|
|
|
@ -77622,6 +77625,14 @@ BI.NumberEditor = BI.inherit(BI.Widget, { |
|
|
|
this.bottomBtn.setEnable(!!v); |
|
|
|
this.bottomBtn.setEnable(!!v); |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
getLastValidValue: function () { |
|
|
|
|
|
|
|
return this.editor.getLastValidValue(); |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
getLastChangedValue: function () { |
|
|
|
|
|
|
|
return this.editor.getLastChangedValue(); |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
getValue: function () { |
|
|
|
getValue: function () { |
|
|
|
return this.options.value; |
|
|
|
return this.options.value; |
|
|
|
}, |
|
|
|
}, |
|
|
@ -88525,6 +88536,8 @@ BI.ListTreeValueChooserInsertCombo = BI.inherit(BI.AbstractListTreeValueChooser, |
|
|
|
this.combo = BI.createWidget({ |
|
|
|
this.combo = BI.createWidget({ |
|
|
|
type: "bi.multi_tree_list_combo", |
|
|
|
type: "bi.multi_tree_list_combo", |
|
|
|
element: this, |
|
|
|
element: this, |
|
|
|
|
|
|
|
text: o.text, |
|
|
|
|
|
|
|
watermark: o.watermark, |
|
|
|
itemsCreator: BI.bind(this._itemsCreator, this), |
|
|
|
itemsCreator: BI.bind(this._itemsCreator, this), |
|
|
|
valueFormatter: BI.bind(this._valueFormatter, this), |
|
|
|
valueFormatter: BI.bind(this._valueFormatter, this), |
|
|
|
width: o.width, |
|
|
|
width: o.width, |
|
|
@ -88610,6 +88623,8 @@ BI.TreeValueChooserInsertCombo = BI.inherit(BI.AbstractTreeValueChooser, { |
|
|
|
} |
|
|
|
} |
|
|
|
this.combo = BI.createWidget({ |
|
|
|
this.combo = BI.createWidget({ |
|
|
|
type: "bi.multi_tree_insert_combo", |
|
|
|
type: "bi.multi_tree_insert_combo", |
|
|
|
|
|
|
|
text: o.text, |
|
|
|
|
|
|
|
watermark: o.watermark, |
|
|
|
element: this, |
|
|
|
element: this, |
|
|
|
itemsCreator: BI.bind(this._itemsCreator, this), |
|
|
|
itemsCreator: BI.bind(this._itemsCreator, this), |
|
|
|
valueFormatter: BI.bind(this._valueFormatter, this), |
|
|
|
valueFormatter: BI.bind(this._valueFormatter, this), |
|
|
@ -88696,6 +88711,8 @@ BI.TreeValueChooserCombo = BI.inherit(BI.AbstractTreeValueChooser, { |
|
|
|
} |
|
|
|
} |
|
|
|
this.combo = BI.createWidget({ |
|
|
|
this.combo = BI.createWidget({ |
|
|
|
type: "bi.multi_tree_combo", |
|
|
|
type: "bi.multi_tree_combo", |
|
|
|
|
|
|
|
text: o.text, |
|
|
|
|
|
|
|
watermark: o.watermark, |
|
|
|
element: this, |
|
|
|
element: this, |
|
|
|
itemsCreator: BI.bind(this._itemsCreator, this), |
|
|
|
itemsCreator: BI.bind(this._itemsCreator, this), |
|
|
|
valueFormatter: BI.bind(this._valueFormatter, this), |
|
|
|
valueFormatter: BI.bind(this._valueFormatter, this), |
|
|
|