Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
205
Traslation of codebehind from ultrawebtree to WebDataTree
posted

I need to traslate the code behind used with ultrawebtree, and now I'm porting the code to WebDataTree.

I don't know How to translate some code, can't find or I'm, not sur eabou the equivalent:

aNode.FirstNode

and

UltraWebTree1.SelectedNode = aNode;

qDMQ_ID_DOMANDA_QUESTIONARIO = Convert.ToInt32(UltraWebTree1.SelectedNode.DataKey.ToString());


Also this  :

(int)UltraWebTree1.Nodes[i].Nodes[b].DataKey;

Sonething link this:

dk = Convert.ToInt32(UltraWebTree1.Nodes[0].FirstNode.DataKey);

UltraWebTree1.SelectedNode = UltraWebTree1.Nodes[0].FirstNode;