|
|
@ -82998,7 +82998,7 @@ BI.MultiDateSegment = BI.inherit(BI.Single, { |
|
|
|
itemHeight: 24, |
|
|
|
itemHeight: 24, |
|
|
|
maxGap: 15, |
|
|
|
maxGap: 15, |
|
|
|
minGap: 10, |
|
|
|
minGap: 10, |
|
|
|
textWidth: 30, |
|
|
|
textWidth: 60, |
|
|
|
defaultEditorValue: "1" |
|
|
|
defaultEditorValue: "1" |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
@ -83006,7 +83006,6 @@ BI.MultiDateSegment = BI.inherit(BI.Single, { |
|
|
|
return $.extend(BI.MultiDateSegment.superclass._defaultConfig.apply(this, arguments), { |
|
|
|
return $.extend(BI.MultiDateSegment.superclass._defaultConfig.apply(this, arguments), { |
|
|
|
baseCls: 'bi-multidate-segment', |
|
|
|
baseCls: 'bi-multidate-segment', |
|
|
|
text: "", |
|
|
|
text: "", |
|
|
|
width: 130, |
|
|
|
|
|
|
|
height: 30, |
|
|
|
height: 30, |
|
|
|
isEditorExist: true, |
|
|
|
isEditorExist: true, |
|
|
|
selected: false, |
|
|
|
selected: false, |
|
|
@ -83025,13 +83024,13 @@ BI.MultiDateSegment = BI.inherit(BI.Single, { |
|
|
|
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments); |
|
|
|
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments); |
|
|
|
}); |
|
|
|
}); |
|
|
|
this.textEditor = BI.createWidget({ |
|
|
|
this.textEditor = BI.createWidget({ |
|
|
|
type: 'bi.sign_editor', |
|
|
|
type: 'bi.text_editor', |
|
|
|
value: this.constants.defaultEditorValue, |
|
|
|
value: this.constants.defaultEditorValue, |
|
|
|
title: function () { |
|
|
|
title: function () { |
|
|
|
return self.textEditor.getValue(); |
|
|
|
return self.textEditor.getValue(); |
|
|
|
}, |
|
|
|
}, |
|
|
|
tipType: "success", |
|
|
|
tipType: "success", |
|
|
|
cls: 'bi-multidate-editor bi-border', |
|
|
|
cls: 'bi-multidate-editor', |
|
|
|
width: this.constants.textWidth, |
|
|
|
width: this.constants.textWidth, |
|
|
|
height: this.constants.itemHeight |
|
|
|
height: this.constants.itemHeight |
|
|
|
}); |
|
|
|
}); |
|
|
|