Fixed table ID used when shutdown button is clicked.

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@16169 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
phamt 2013-05-02 21:44:21 +00:00
parent 4c2f445b0a
commit 4f10fd671a

View File

@ -539,7 +539,7 @@ function loadNodesTable(data) {
// Power softoff
var powerSoftoffLnk = $('<a>Shutdown</a>');
powerSoftoffLnk.click(function() {
var tgtNodes = getNodesChecked(nodesTableId);
var tgtNodes = getNodesChecked(nodesDTId);
if (tgtNodes) {
powerNode(tgtNodes, 'softoff');
}