|
|
|
@ -548,7 +548,7 @@ BI.AbstractTreeValueChooser = BI.inherit(BI.Widget, {
|
|
|
|
|
isParent: nodes[i].getChildrenLength() > 0, |
|
|
|
|
checked: state[0], |
|
|
|
|
halfCheck: state[1], |
|
|
|
|
open: nodes[i].open, |
|
|
|
|
open: o.open || nodes[i].open, |
|
|
|
|
disabled: nodes[i].disabled, |
|
|
|
|
title: nodes[i].title || nodes[i].text, |
|
|
|
|
warningTitle: nodes[i].warningTitle, |
|
|
|
@ -589,7 +589,7 @@ BI.AbstractTreeValueChooser = BI.inherit(BI.Widget, {
|
|
|
|
|
isParent: node.getChildrenLength() > 0, |
|
|
|
|
checked: state[0], |
|
|
|
|
halfCheck: state[1], |
|
|
|
|
open: self.options.open, |
|
|
|
|
open: true, |
|
|
|
|
disabled: node.disabled, |
|
|
|
|
title: node.title || node.text, |
|
|
|
|
warningTitle: node.warningTitle, |
|
|
|
|