I have searched online documents as well as downloaded offline documents, but neither has complete and detailed parts about WebDataTree control's client programming, including object model, events, APIs, and so on.
Now I only got very limit information from samples in Features Browser and posts in this forum, such as args parameter of NodeClick client event and its method like getNode().get_text(), getNode().get_valueString().
PS: I use hierarchical data source to load data into my WebDataTree control.
VS 2010IG 10.2 WebDataTreeCLR 3.5
Hi,
You can use the get_parentNode function:
var parentNode = node.get_parentNode();
I am searching for how to find Parent Node of selected node in JavaScript
Thank you for your response.
Eventually I find them located at the WebDataTree Library section under CSOM Reference Guide branch in the documents by searching the documents. And I checked the source code of serverside-generated javascript file to help me understand them well.
you have to start on help.infragistics.com and select the release and CLR.
http://help.infragistics.com/NetAdvantage/ASPNET/2010.2/CLR4.0/ then you can search the API reference.
This link is for the client side API reference:
http://help.infragistics.com/NetAdvantage/ASPNET/2010.2/CLR4.0/?page=WebDataTree~Infragistics.Web.UI_namespace.html
Hope this helps.
Thanks,
Lubomir