b1744c4d18
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@3596 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
12 lines
348 B
JavaScript
12 lines
348 B
JavaScript
function loadSPCfgTab(panel) {
|
|
//alert('showing ping tab');
|
|
var nr = '';
|
|
if (window.noderange && window.noderange != "") {
|
|
nr = window.noderange;
|
|
}
|
|
|
|
panel.children().remove(); //get rid of the previous contents
|
|
panel.append('<p>Loading SP Config tab... <img src="../images/throbber.gif"></p>');
|
|
panel.load('spconfig.php?noderange='+nr);
|
|
}
|