Fixed bugs caused by scrollable datatable.

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@10362 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
phamt 2011-08-24 20:31:28 +00:00
parent 0f302dbc58
commit 62b0d36397
2 changed files with 14 additions and 7 deletions

View File

@ -1514,7 +1514,7 @@ function loadNodeStatus(data) {
*/
function refreshNodeStatus(group, tableId) {
// Show ping loader
var pingCol = $('#' + tableId + ' thead tr th').eq(2);
var pingCol = $('#' + tableId + '_wrapper .dataTables_scrollHead .datatable thead tr th:eq(2)');
pingCol.find('img').show();
// Get power status for nodes shown
@ -2456,11 +2456,14 @@ function createCommentsToolTip(comment) {
function createStatusToolTip() {
// Create tooltip container
var toolTip = $('<div class="tooltip"></div>').css({
'width': '150px'
'width': '150px',
'font-weight': 'normal'
});
// Create info text
var info = $('<p></p>');
var info = $('<p></p>').css({
'white-space': 'normal'
});
info.append('Click here to refresh the node status. To configure the xCAT monitor, ');
// Create link to turn on xCAT monitoring
@ -2500,8 +2503,10 @@ function createStatusToolTip() {
function createPowerToolTip() {
// Create tooltip container
var toolTip = $('<div class="tooltip">Click here to refresh the power status</div>').css({
'width': '150px'
});
'width': '150px',
'white-space': 'normal',
'font-weight': 'normal'
});
return toolTip;
}
@ -2513,7 +2518,9 @@ function createPowerToolTip() {
function createMonitorToolTip() {
// Create tooltip container
var toolTip = $('<div class="tooltip">Click here to refresh the monitoring status</div>').css({
'width': '150px'
'width': '150px',
'white-space': 'normal',
'font-weight': 'normal'
});
return toolTip;
}

View File

@ -28,7 +28,7 @@ function loadPage(){
'<body>
<div id="header">
<ul>
<li><img src="images/logo.gif" height="40px" style="margin-right: 60px;"/></li>
<li><img src="images/logo.gif" height="39px" style="margin-right: 60px;"/></li>
<li><a href="index.php" class="top_link">Nodes</a></li>
<li><a href="configure.php" class="top_link">Configure</a></li>
<li><a href="provision.php" class="top_link">Provision</a></li>