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
This commit is contained in:
phamt 2011-01-17 15:40:23 +00:00
parent ac143747a3
commit 03688a85c1

View File

@ -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);
}
});