|
|
@ -14,6 +14,7 @@ BI.SelectTreePlusGroupNode = BI.inherit(BI.NodeButton, { |
|
|
|
}, |
|
|
|
}, |
|
|
|
id: "", |
|
|
|
id: "", |
|
|
|
pId: "", |
|
|
|
pId: "", |
|
|
|
|
|
|
|
iconWrapperWidth: null, |
|
|
|
readonly: true, |
|
|
|
readonly: true, |
|
|
|
open: false, |
|
|
|
open: false, |
|
|
|
height: 24 |
|
|
|
height: 24 |
|
|
@ -24,7 +25,9 @@ BI.SelectTreePlusGroupNode = BI.inherit(BI.NodeButton, { |
|
|
|
var self = this, o = this.options; |
|
|
|
var self = this, o = this.options; |
|
|
|
this.checkbox = BI.createWidget({ |
|
|
|
this.checkbox = BI.createWidget({ |
|
|
|
type: "bi.tree_node_checkbox", |
|
|
|
type: "bi.tree_node_checkbox", |
|
|
|
stopPropagation: true |
|
|
|
stopPropagation: true, |
|
|
|
|
|
|
|
iconHeight: o.height, |
|
|
|
|
|
|
|
iconWidth: o.iconWrapperWidth || o.height |
|
|
|
}); |
|
|
|
}); |
|
|
|
this.text = BI.createWidget({ |
|
|
|
this.text = BI.createWidget({ |
|
|
|
type: "bi.label", |
|
|
|
type: "bi.label", |
|
|
|