|
|
|
@ -55,7 +55,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
|
|
|
|
|
} |
|
|
|
|
return true; |
|
|
|
|
}, |
|
|
|
|
cls: "number-interval-small-editor " + (o.simple ? "bi-border-bottom" : "bi-border") |
|
|
|
|
cls: "number-interval-small-editor " + (o.simple ? "bi-border-bottom" : "bi-border bi-border-corner-left-radius") |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
this.smallTip = BI.createWidget({ |
|
|
|
@ -93,7 +93,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
|
|
|
|
|
} |
|
|
|
|
return true; |
|
|
|
|
}, |
|
|
|
|
cls: "number-interval-big-editor" + (o.simple ? " bi-border-bottom" : " bi-border") |
|
|
|
|
cls: "number-interval-big-editor" + (o.simple ? " bi-border-bottom" : " bi-border bi-border-corner-right-radius") |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
this.bigTip = BI.createWidget({ |
|
|
|
@ -113,7 +113,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
|
|
|
|
|
}); |
|
|
|
|
this.smallCombo = BI.createWidget({ |
|
|
|
|
type: "bi.icon_combo", |
|
|
|
|
cls: "number-interval-small-combo" + (o.simple ? "" : " bi-border-top bi-border-bottom bi-border-right"), |
|
|
|
|
cls: "number-interval-small-combo" + (o.simple ? "" : " bi-border-top bi-border-bottom bi-border-right bi-border-corner-right-radius"), |
|
|
|
|
height: o.height - (o.simple ? 0 : 2), |
|
|
|
|
items: [{ |
|
|
|
|
text: "(" + BI.i18nText("BI-Less_Than") + ")", |
|
|
|
@ -132,7 +132,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
|
|
|
|
|
} |
|
|
|
|
this.bigCombo = BI.createWidget({ |
|
|
|
|
type: "bi.icon_combo", |
|
|
|
|
cls: "number-interval-big-combo" + (o.simple ? "" : " bi-border-top bi-border-bottom bi-border-left"), |
|
|
|
|
cls: "number-interval-big-combo" + (o.simple ? "" : " bi-border-top bi-border-bottom bi-border-left bi-border-corner-left-radius"), |
|
|
|
|
height: o.height - (o.simple ? 0 : 2), |
|
|
|
|
items: [{ |
|
|
|
|
text: "(" + BI.i18nText("BI-Less_Than") + ")", |
|
|
|
|