use check to show the selected nodes

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@8446 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
xq2005 2010-12-17 05:13:13 +00:00
parent b82ea3e11a
commit 602d2c126b
7 changed files with 3 additions and 3 deletions

View File

@ -676,7 +676,7 @@ table a:hover {
.lparStatus {
width: 10px;
height: 12px;
height: 11px;
}
.fspcheckbox{

Binary file not shown.

Before

Width:  |  Height:  |  Size: 813 B

After

Width:  |  Height:  |  Size: 813 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 856 B

After

Width:  |  Height:  |  Size: 831 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 858 B

After

Width:  |  Height:  |  Size: 831 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 862 B

After

Width:  |  Height:  |  Size: 831 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 852 B

After

Width:  |  Height:  |  Size: 831 B

View File

@ -190,7 +190,7 @@ function createGraphical(bpa, fsp, area){
row.append(td);
}
var selectNodeDiv = $('<div id="selectNodeDiv" style="margin: 20px;"></div>');
var selectNodeDiv = $('<div id="selectNodeDiv" style="margin: 20px;">Nodes:</div>');
var temp = 0;
for (var i in selectNode){
temp ++;
@ -294,7 +294,7 @@ function updateSelectNodeDiv(){
//add buttons
$('#selectNodeDiv').append('Lpars: ');
$('#selectNodeDiv').append('Nodes: ');
for(var lparName in selectNode){
$('#selectNodeDiv').append(lparName + ' ');
temp ++;