fix silent flag for tree expand

This commit is contained in:
nightwing 2016-01-25 13:58:46 +04:00
parent 64cc0d03f3
commit 351af82d49

View File

@ -89,9 +89,9 @@ var DataProvider = function(root) {
var childNode = ch[j];
if (this.isOpen(childNode)) {
this.setOpen(childNode, false);
this.open(childNode, deep - 1);
this.open(childNode, deep - 1, silent);
} else if (deep > 0) {
this.open(childNode, deep - 1);
this.open(childNode, deep - 1, silent);
}
}