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.
43 lines
1.0 KiB
43 lines
1.0 KiB
8 years ago
|
/**
|
||
|
* 表示当前对象
|
||
|
*
|
||
|
* Created by GUY on 2015/9/7.
|
||
|
* @class BI.VirtualList
|
||
|
* @extends BI.Widget
|
||
|
*/
|
||
|
BI.VirtualList = BI.inherit(BI.Widget, {
|
||
|
props: function () {
|
||
|
return {
|
||
|
baseCls: "bi-virtual-list clusterize-scroll",
|
||
|
};
|
||
|
},
|
||
|
render: function () {
|
||
|
var self = this, o = this.options;
|
||
|
return {
|
||
|
type: "bi.default",
|
||
|
items: [{
|
||
|
type: "bi.layout",
|
||
|
ref: function () {
|
||
|
self.contentEl = this;
|
||
|
},
|
||
|
cls: "clusterize-content"
|
||
|
}]
|
||
|
}
|
||
|
},
|
||
|
|
||
|
mounted: function () {
|
||
|
var data = [];
|
||
|
for (var i = 0; i < 10000; i++) {
|
||
|
data.push("<div style='height: 30px;'>" + i + "</div>");
|
||
|
}
|
||
|
new Clusterize({
|
||
|
rows: data,
|
||
|
scrollElem: this.element[0],
|
||
|
contentElem: this.contentEl.element[0]
|
||
|
})
|
||
|
},
|
||
|
|
||
|
populate: function () {
|
||
|
}
|
||
|
});
|
||
|
BI.shortcut('bi.virtual_list', BI.VirtualList);
|