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.
58 lines
1.4 KiB
58 lines
1.4 KiB
8 years ago
|
/**
|
||
|
* guy
|
||
|
* 异步树
|
||
|
* @class BI.DisplayTree
|
||
|
* @extends BI.TreeView
|
||
|
*/
|
||
|
BI.DisplayTree = BI.inherit(BI.TreeView, {
|
||
|
_defaultConfig: function () {
|
||
|
return BI.extend(BI.DisplayTree.superclass._defaultConfig.apply(this, arguments), {
|
||
|
extraCls: "bi-display-tree"
|
||
|
})
|
||
|
},
|
||
|
_init: function () {
|
||
|
BI.DisplayTree.superclass._init.apply(this, arguments);
|
||
|
},
|
||
|
|
||
|
//配置属性
|
||
|
_configSetting: function () {
|
||
|
var setting = {
|
||
|
view: {
|
||
|
selectedMulti: false,
|
||
|
dblClickExpand: false,
|
||
|
showIcon: false,
|
||
|
showTitle: false
|
||
|
},
|
||
|
data: {
|
||
|
key: {
|
||
|
title: "title",
|
||
|
name: "text"
|
||
|
},
|
||
|
simpleData: {
|
||
|
enable: true
|
||
|
}
|
||
|
},
|
||
|
callback: {
|
||
|
beforeCollapse: beforeCollapse
|
||
|
}
|
||
|
};
|
||
|
|
||
|
function beforeCollapse(treeId, treeNode) {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
return setting;
|
||
|
},
|
||
|
|
||
|
initTree: function (nodes, setting) {
|
||
|
var setting = setting || this._configSetting();
|
||
|
this.nodes = $.fn.zTree.init(this.tree.element, setting, nodes);
|
||
|
},
|
||
|
|
||
|
destroy: function () {
|
||
|
BI.DisplayTree.superclass.destroy.apply(this, arguments);
|
||
|
}
|
||
|
});
|
||
|
BI.DisplayTree.EVENT_CHANGE = "EVENT_CHANGE";
|
||
|
|
||
|
$.shortcut("bi.display_tree", BI.DisplayTree);
|