xcat-core/xCAT-web/machines/rvitals.js
bp-sawyers 14856756e3 - system p discovery done
- rvitals done
- frame view fixed

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@2511 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
2008-11-19 21:26:43 +00:00

10 lines
389 B
JavaScript

// Javascript functions for the Rvitals/rinv tab
function loadVitalsTab(panel) {
//alert('showing vitals tab');
var nr = '';
if (window.noderange && window.noderange != "") { nr = window.noderange; }
panel.children().remove(); // get rid of previous content
panel.append('<p>Loading node vitals... <img src="../images/throbber.gif"></p>');
panel.load('rvitals.php?noderange='+nr);
}