[quote="gonewalkabout"]I need to find a way to trap when the user toggles Check Box Client side, both true and false and then fire a VB handler in my code behind of some sort (so I can call a SQL SP and change the underlying data)
Failing that I need to capture the entire node collection so that I can itererate through them. It's no problem for checked nodes but I'm having trouble for unchecked. (which I had with ms treeview and why I'm liking the look of FlyTreeView)
So do you just need to get unchecked nodes at server side? Something similar to FlyTreeView.GetCheckedNodes() but to look like FlyTreeView.GetUncheckedNodes()?
Or do you need to handle client-side checked/unchecked event?
[quote="gonewalkabout"]
And ... last but not least I need to do this with the Item ID field (which is what I used to create the node in the ConvertTabularDataToHierarchical function but seems to disappear after. I guess I have to create an attribute to carry this value?
You can set a binding containing binding.ValueField = "ID". So flytreeview will pick up your ID into node.Value property during data binding process.