Page 1 of 1

IWCGJQTreeView: expand / collapse items

PostPosted: 11 Jul 2013 15:27
by itroeger
Hello,

is there a way to expand / collapse all items of the treeview?

Kind regards
Ingo Tröger

Re: IWCGJQTreeView: expand / collapse items

PostPosted: 11 Jul 2013 15:51
by Alexander Bulei
Hi itroeger,

To expand:

Code: Select all
IWCGJQTreeView.JQTreeViewOptions.Core.ExpandNode(-1,True);


To collapse:

Code: Select all
IWCGJQTreeView.JQTreeViewOptions.Core.CollapseNode(-1,True);


We will create 2 method to do this directly.

Best Regards.