Is a node's child node count available in the NodeDataBound event?
This code...
protected void RadTreeView1_NodeDataBound(object sender, RadTreeNodeEventArgs e) { if (e.Node.Nodes.Count > 0) throw new Exception("bang"); }...never seems to throw an exception.
It makes sense that it might not have the child nodes count until the tree is fully databound, but I just wanted to make sure that is the case or if I'm overlooking something.
Thanks... Russ