forked from fanruan/fineui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.4 KiB
46 lines
1.4 KiB
Demo.Main = BI.inherit(BI.Widget, { |
|
props: { |
|
baseCls: "demo-main bi-background" |
|
}, |
|
render: function () { |
|
var center; |
|
return { |
|
type: "bi.border", |
|
items: { |
|
north: { |
|
height: 50, |
|
el: { |
|
type: "demo.north", |
|
listeners: [{ |
|
eventName: Demo.North.EVENT_VALUE_CHANGE, |
|
action: function (v) { |
|
center.setValue(v); |
|
} |
|
}] |
|
} |
|
}, |
|
west: { |
|
width: 230, |
|
el: { |
|
type: "demo.west", |
|
listeners: [{ |
|
eventName: Demo.West.EVENT_VALUE_CHANGE, |
|
action: function (v) { |
|
center.setValue(v); |
|
} |
|
}] |
|
} |
|
}, |
|
center: { |
|
el: { |
|
type: "demo.center", |
|
ref: function (_ref) { |
|
center = _ref; |
|
} |
|
} |
|
} |
|
} |
|
} |
|
} |
|
}); |
|
BI.shortcut("demo.main", Demo.Main); |