Hi Alexey
First thx a lot the Virtual Mode Demo it helped me a lot.
About the other thing, how can I execute some code on double click on node. I know about the posibilty with client side event, but that is JScript and i'm not good at it and i need to do connection to database and insert a record that i get form the node, dosen't depend if it is a leafe or node that has leafes. I would like if it is posible to execute C# code on double click on node.
And another thing, when i put Enable Selection, if i check some nodes, and the i collapse that part when i do
List<TreeListNode> list = treeList.GetSelectedNodes(false);
foreach (TreeListNode node in list)
{
ASPxLabel1.Text += node["filed"].ToString() + " ";
}
i dont get the nodes that are in the colapsed part , is it that because i use the Virtual Mode. Because when a expand again the same node i have colapsed the selection are there.
Thx