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.
|
|
|
Demo.Func = BI.inherit(BI.Widget, {
|
|
|
|
props: {
|
|
|
|
baseCls: "demo-func"
|
|
|
|
},
|
|
|
|
render: function () {
|
|
|
|
var items = [];
|
|
|
|
var cellCount = 100;
|
|
|
|
for (var i = 0; i < cellCount; i++) {
|
|
|
|
items[i] = {
|
|
|
|
type: "bi.label",
|
|
|
|
text: i
|
|
|
|
};
|
|
|
|
}
|
|
|
|
var grid = BI.createWidget({
|
|
|
|
type: "bi.collection_view",
|
|
|
|
width: 400,
|
|
|
|
height: 300,
|
|
|
|
items: items,
|
|
|
|
cellSizeAndPositionGetter: function (index) {
|
|
|
|
return {
|
|
|
|
x: index % 10 * 50,
|
|
|
|
y: Math.floor(index / 10) * 50,
|
|
|
|
width: 50,
|
|
|
|
height: 50
|
|
|
|
};
|
|
|
|
}
|
|
|
|
});
|
|
|
|
BI.createWidget({
|
|
|
|
type: "bi.absolute",
|
|
|
|
element: this,
|
|
|
|
items: [{
|
|
|
|
el: grid,
|
|
|
|
left: 10,
|
|
|
|
right: 10,
|
|
|
|
top: 10,
|
|
|
|
bottom: 10
|
|
|
|
}]
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
BI.shortcut("demo.collection_view", Demo.Func);
|