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.
73 lines
2.0 KiB
73 lines
2.0 KiB
5 years ago
|
BI.RootTreeLeafItem = BI.inherit(BI.BasicButton, {
|
||
|
_defaultConfig: function () {
|
||
|
return BI.extend(BI.RootTreeLeafItem.superclass._defaultConfig.apply(this, arguments), {
|
||
|
extraCls: "bi-root-tree-leaf-item bi-list-item-active",
|
||
|
logic: {
|
||
|
dynamic: false
|
||
|
},
|
||
|
id: "",
|
||
|
pId: "",
|
||
|
layer: 0,
|
||
|
height: 24
|
||
|
});
|
||
|
},
|
||
|
_init: function () {
|
||
|
BI.RootTreeLeafItem.superclass._init.apply(this, arguments);
|
||
|
var o = this.options;
|
||
|
this.text = BI.createWidget({
|
||
|
type: "bi.label",
|
||
|
textAlign: "left",
|
||
|
whiteSpace: "nowrap",
|
||
|
textHeight: o.height,
|
||
|
height: o.height,
|
||
|
hgap: o.hgap,
|
||
|
text: o.text,
|
||
|
value: o.value,
|
||
|
py: o.py,
|
||
|
keyword: o.keyword
|
||
|
});
|
||
|
var type = BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left);
|
||
|
var items = BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, {
|
||
|
width: 24,
|
||
|
el: {
|
||
|
type: "bi.layout",
|
||
|
width: 24,
|
||
|
height: o.height
|
||
|
}
|
||
|
}, {
|
||
|
el: this.text
|
||
|
});
|
||
|
BI.createWidget(BI.extend({
|
||
|
element: this
|
||
|
}, BI.LogicFactory.createLogic(type, BI.extend(o.logic, {
|
||
|
items: items
|
||
|
}))));
|
||
|
},
|
||
|
|
||
|
doRedMark: function () {
|
||
|
this.text.doRedMark.apply(this.text, arguments);
|
||
|
},
|
||
|
|
||
|
unRedMark: function () {
|
||
|
this.text.unRedMark.apply(this.text, arguments);
|
||
|
},
|
||
|
|
||
|
doHighLight: function () {
|
||
|
this.text.doHighLight.apply(this.text, arguments);
|
||
|
},
|
||
|
|
||
|
unHighLight: function () {
|
||
|
this.text.unHighLight.apply(this.text, arguments);
|
||
|
},
|
||
|
|
||
|
getId: function () {
|
||
|
return this.options.id;
|
||
|
},
|
||
|
|
||
|
getPId: function () {
|
||
|
return this.options.pId;
|
||
|
}
|
||
|
});
|
||
|
|
||
|
BI.shortcut("bi.root_tree_leaf_item", BI.RootTreeLeafItem);
|