Fixed table ID used when shutdown button is clicked.

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

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