My favorites | Sign in
Project Home Downloads
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions
Issue 333: IE - "Stop running this script".
1 person starred this issue and may be notified of changes. Back to list
Status:  WontFix
Owner:  ----
Closed:  Jul 2012


 
Reported by resorsys@airtelbroadband.in, Jul 20, 2012
I am trying to build a tree of 4 level from around 11000 nodes. It works perfectly on chrome but in IE8 I get an error "Stop running this script", but once NO is clicked the tree is populated perfectly.

I tried lot of debugging but it is not helping. I am using:

Dynatree Version:
-----------------
$Version: 1.2.1$
$Revision: 606, 2012-06-12 08:10:04$

JQuery Version;
---------------
jQuery JavaScript Library v1.7.1

My Call is as below:
---------------------


$("#tree3").dynatree(
{
					
 checkbox: true,
 selectMode: 3,
 children: treeData,
 onSelect: function(select, node)
{
				            // Get a list of all selected nodes, and convert to a key array:
				            var selKeys = $.map(node.tree.getSelectedNodes(), function(node){
					        return node.data.key;
				        });
				        $("#echoSelection3").text(selKeys.join(", "));
        				// Get a list of all selected TOP nodes
		        		var selRootNodes = node.tree.getSelectedNodes(true);
				        // ... and convert to a key array:
				        var selRootKeys = $.map(selRootNodes, function(node){
					    return node.data.key;
				    });
				    $("#echoSelectionRootKeys3").text(selRootKeys.join(", "));
				    $("#echoSelectionRoots3").text(selRootNodes.join(", "));
			},
			onDblClick: function(node, event)


Please help. If you want I can send the sample data file.
Jul 21, 2012
Project Member #1 moo...@wwwendt.de
IE 8 is simply to slow to render 10k+ nodes within the time limit.
Consider using the lazy node feature of dynatree, that will give a better user experience anyway.
Status: WontFix
Labels: Milestone-Release1.2.1

Powered by Google Project Hosting