Still issues with TWebTreeViewe

Sorry that I have to come back to TWebTreeView. It's working for a great deal, but..

node := WebTreeView.Selections[400]; // doesn't compile ; property not shown in VSC
WebTreeView.FullExpand; // doesn't compile ; property not shown in VSC
WebTreeView.FullCollapse; // doesn't compile ; property not shown in VSC
n := WebTreeView.Items.Count; // result is 3 where it should be 1854 in my case
node := WebTreeView.Items[400]; // result is null
WebTreeView.Selected := node; // doesn't open the tree and show the selected node, check https://www.synbiosys.alterra.nl/testtree

Oeps, de correct url is: https://www.synbiosys.alterra.nl/treetest

  1. In the TWebTreeView there is at this moment no multiselect, hence this property is not available in web.
  2. These are VCL methods but these methods are not in TWebTreeView. We created this treeview from the ground up for the web, modeled after the VCL TreeView but it is not an exact copy.
  3. Items.Count returns the root node count
  4. It returns root nodes only
  5. Setting selection does not open parent nodes. This is not implemented.