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
50
WebDataTree
posted

Hi,

I am using WebDataTree control and adding nodes to the tree instead of Xml DataBind. Also implemented Load on Demand concept using

the below logic.

this.TreeControl.NodeBound += new DataTreeNodeEventHandler(TreeControl_NodeBound);
this.TreeControl.NodePopulate += new DataTreeNodeEventHandler(TreeControl_NodePopulate);

Data loads fine for first time and when I try to expand nodes, it showing "Server does not respond" on hosting machine. If I refresh the page, expanding nodes are just working fine.

In debug mode, it showing "async failed"

Tree Expand Issue

Tree Expand 2

Server Tag:

 <ig:WebDataTree ID="TreeControl" runat="server" Visible="true" Height="100%" ForeColor="Black" EnableConnectorLines="true" EnableAjaxViewState="true">
                 <ClientEvents  
    			            NodeClick="nodeClick"
			                NodeExpanding="nodeExpand" 
                            NodeCollapsing="nodeCollapse"       
                               Initialize="InitializeHandler"
                            /> 
                </ig:WebDataTree>

Thanks,

Karthik Thangavel.

Parents
No Data
Reply
  • 21795
    Offline posted

    Hello Karthik,

    If I understand you correctly you have some type of data source and you are adding nodes to the WebDataTree by yourself. Additionally you need to implement load on demand for the child nodes. If this is what you need please follow the next link to a WebDataTree samples where we show how you can “Manual Load On Demand” nodes to WebDataTree.

    Please let me know if this solves your issue, or if you need any further assistance on this matter.

Children