|
|
@ -95,7 +95,11 @@ BI.PopupView = BI.inherit(BI.Widget, { |
|
|
|
_createView: function () { |
|
|
|
_createView: function () { |
|
|
|
var o = this.options; |
|
|
|
var o = this.options; |
|
|
|
this.button_group = BI.createWidget(o.el, {type: "bi.button_group", value: o.value}); |
|
|
|
this.button_group = BI.createWidget(o.el, {type: "bi.button_group", value: o.value}); |
|
|
|
this.button_group.element.css({"min-height": o.minHeight / BI.pixRatio + BI.pixUnit, "padding-top": o.innerVGap / BI.pixRatio + BI.pixUnit, "padding-bottom": o.innerVGap + "px"}); |
|
|
|
this.button_group.element.css({ |
|
|
|
|
|
|
|
"min-height": o.minHeight / BI.pixRatio + BI.pixUnit, |
|
|
|
|
|
|
|
"padding-top": o.innerVGap / BI.pixRatio + BI.pixUnit, |
|
|
|
|
|
|
|
"padding-bottom": o.innerVGap / BI.pixRatio + BI.pixUnit |
|
|
|
|
|
|
|
}); |
|
|
|
return this.button_group; |
|
|
|
return this.button_group; |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|