fineui是帆软报表和BI产品线所使用的前端框架。
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.

18 lines
501 B

7 years ago
Demo.Func = BI.inherit(BI.Widget, {
props: {
baseCls: "demo-func"
},
render: function () {
return {
7 years ago
type: "bi.virtual_list",
7 years ago
items: BI.map(Demo.CONSTANTS.ITEMS, function (i, item) {
return BI.extend({}, item, {
7 years ago
type: "bi.label",
height: 30,
7 years ago
text: (i + 1) + "." + item.text
7 years ago
});
7 years ago
})
7 years ago
};
7 years ago
}
});
BI.shortcut("demo.virtual_list", Demo.Func);