diff --git a/xCAT-UI/js/nodes/nodes.js b/xCAT-UI/js/nodes/nodes.js index 4a1328075..508014fd6 100644 --- a/xCAT-UI/js/nodes/nodes.js +++ b/xCAT-UI/js/nodes/nodes.js @@ -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 = $('
').css({ - 'width': '150px' + 'width': '150px', + 'font-weight': 'normal' }); // Create info text - var info = $(''); + var info = $('').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 = $('