Hi,
I have a treeview control wherein the parent nodes are populated with single data and child nodes are populated with tables.
Here is how it is populated:
dRow is a row in a datatable.
parent node:
newNode.Text = dRow[2].ToString();
Child node:
newNodeChild.Text = "<Table width='300px'><TR><TD>" + dRow[4].ToString() + "</TD><TD>" + dRow[3].ToString() + "</TD></TR></Table>";
The selectedindexchanged event is called only when I select a parent node. It is not called when I select the child node. How do I make the postback to happen on selection of the child node also?