From 03688a85c1cac7830df0f9d9761f30dadab5bb65 Mon Sep 17 00:00:00 2001 From: phamt Date: Mon, 17 Jan 2011 15:40:23 +0000 Subject: [PATCH] Needed to move call to create physical layout to after ajax call because something in createPhysicalLayout() breaks the whole loadNodes ajax call. git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@8681 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-UI/js/nodes/nodes.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/xCAT-UI/js/nodes/nodes.js b/xCAT-UI/js/nodes/nodes.js index 5fae827b6..f55682a71 100644 --- a/xCAT-UI/js/nodes/nodes.js +++ b/xCAT-UI/js/nodes/nodes.js @@ -185,7 +185,6 @@ function loadGroups(data) { } } - createPhysicalLayout(nodesList); // Sort nodes list nodesList.sort(); @@ -215,6 +214,9 @@ function loadGroups(data) { success : loadNodes }); + + // Create physical layout + createPhysicalLayout(nodesList); } });