This question is locked. New answers and comments are not allowed.
Greetings,
I have a tree that is bound by the following code, which I believe is server side binding:
.DataBinding(dataBinding =>
{
dataBinding.Ajax()
.Enabled(
true)
.Select(
"LoadArticlesOnDemand", "Home");
})
Now, after the app has started and the user has added a node to the tree, I would like to show the entire updated tree with the added node, expanding the tree if necessary. At the present time, the tree is displayed in the contracted state, showing only the root node.
Is this possible and can you tell me how this may be accomplished?
Thanks in advance,
Eugene