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.
75 lines
2.2 KiB
75 lines
2.2 KiB
3 years ago
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title></title>
|
||
|
<link rel="stylesheet" type="text/css" href="../dist/2.0/fineui.css"/>
|
||
|
<script src="../dist/2.0/fineui.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="wrapper"></div>
|
||
|
<script>
|
||
|
|
||
|
BI.Plugin.configRender("demo.parent", function (rendered) {
|
||
|
console.log(rendered);
|
||
|
return rendered;
|
||
|
});
|
||
|
|
||
|
var Widget = BI.inherit(BI.Widget, {
|
||
|
setup: function () {
|
||
|
var wrapper, list;
|
||
|
return function () {
|
||
|
return {
|
||
|
type: "bi.vertical",
|
||
|
items: [{
|
||
|
type: "bi.vertical",
|
||
|
invisible: true,
|
||
|
ref: function (_ref) {
|
||
|
wrapper = _ref;
|
||
|
},
|
||
|
items: [{
|
||
|
type: "bi.button_group",
|
||
|
height: 100,
|
||
|
ref: function (_ref) {
|
||
|
list = _ref;
|
||
|
},
|
||
|
items: [],
|
||
|
layouts: [{
|
||
|
type: "bi.inline",
|
||
|
tgap: 10,
|
||
|
lgap: 10
|
||
|
}]
|
||
|
}]
|
||
|
}, {
|
||
|
type: "bi.button",
|
||
|
text: "点击",
|
||
|
handler: function () {
|
||
|
list.populate(BI.range(10).map(function (i) {
|
||
|
return {
|
||
|
type: "bi.label",
|
||
|
text: i,
|
||
|
cls: "bi-border"
|
||
|
};
|
||
|
}));
|
||
|
wrapper.setVisible(true);
|
||
|
}
|
||
|
}]
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
});
|
||
|
BI.shortcut("demo.parent", Widget);
|
||
|
BI.createWidget({
|
||
|
type: "bi.absolute",
|
||
|
items: [{
|
||
|
el: {
|
||
|
type: "demo.parent"
|
||
|
},
|
||
|
top: 100,
|
||
|
left: 100
|
||
|
}],
|
||
|
element: "#wrapper"
|
||
|
});
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|