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
935
IE Script error when selecting node with 3000 child nodes
posted

Hi All,

I have a WebDataTree that displays Active and Inactive company names with contact details as child nodes. There are three levels as below:

Active

Company Name

Contact One

Contact Two

Company name and contact details are manually added to the tree in code behind using:

//Add company name to the tree

webDataTree.Nodes(EntityStatus.Active).Nodes.Add(item.CompanyName, item.CompanyId)

// Add contact details to the company node

webDataTree.Nodes(status).Nodes.FindNodeByKey(currentCompanyId).Nodes.Add(contactNode)

This was working fine until recently when we came across a company with more than 3000 contacts. Now, the method that loads the tree runs fine, but the tree still takes a long time to load. When selecting any contact node from the tree to display details of the contact, it brings up an IE error that the script is taking too long to run.

The Infragistics version number is 10.1.20101.1011.

I would appreciate your assistance with this query.

Thanks.

 

Parents Reply Children