You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, i wanted to set state to hide for some nodes after certain events. Im using following callback function:
vm.callbacl = function (nodes, str, res) {
// Reset state for all elements
_.each(vm.treeData, function (element, iteree) {
element.text = "FSDFSD";// THIS LINE WORKS!
element.state.hidden = true; // THIS NOT!
});
};
Somehow text property binding exists, but not for the state
The text was updated successfully, but these errors were encountered:
Hello, i wanted to set state to hide for some nodes after certain events. Im using following callback function:
Somehow text property binding exists, but not for the state
The text was updated successfully, but these errors were encountered: