Browse Source

DEC-13302 fix: linear_segment支持设置layouts

es6
qcc 5 years ago
parent
commit
6ce899d4f7
  1. 7
      src/case/linersegment/linear.segment.js

7
src/case/linersegment/linear.segment.js

@ -3,6 +3,9 @@ BI.LinearSegment = BI.inherit(BI.Widget, {
props: {
baseCls: "bi-linear-segment bi-split-bottom",
items: [],
layouts: [{
type: "bi.center"
}],
height: 29
},
@ -14,9 +17,7 @@ BI.LinearSegment = BI.inherit(BI.Widget, {
type: "bi.linear_segment_button",
height: o.height - 1
}),
layout: [{
type: "bi.center"
}],
layouts: o.layouts,
listeners: [{
eventName: "__EVENT_CHANGE__",
action: function () {

Loading…
Cancel
Save