|
|
@ -288,17 +288,40 @@
|
|
|
|
} );
|
|
|
|
} );
|
|
|
|
|
|
|
|
|
|
|
|
var t_lh = $('#lastHeard').DataTable( {
|
|
|
|
var t_lh = $('#lastHeard').DataTable( {
|
|
|
|
"createdRow": function( row, data, dataIndex ) {
|
|
|
|
"order": [[ 0, "desc" ]],
|
|
|
|
|
|
|
|
"columnDefs": [
|
|
|
|
|
|
|
|
{ className: "dt-nowrap", "targets": [ 0, 1, 2, 3, 7 ] }
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
'rowCallback': function(row, data, index){
|
|
|
|
|
|
|
|
// Calculating LOSS
|
|
|
|
|
|
|
|
if(parseInt(data[6].substring(0, data[6].indexOf("%"))) <= 5){
|
|
|
|
|
|
|
|
$(row).find('td:eq(6)').css('color', 'black');
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if(parseInt(data[6].substring(0, data[6].indexOf("%"))) > 5){
|
|
|
|
|
|
|
|
$(row).find('td:eq(6)').css('color', 'orange');
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if(parseInt(data[6].substring(0, data[6].indexOf("%"))) > 15){
|
|
|
|
|
|
|
|
$(row).find('td:eq(6)').css('color', 'red');
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Calculating BER
|
|
|
|
|
|
|
|
if(parseFloat(data[7].substring(0, data[7].indexOf("%"))) <= 0.5){
|
|
|
|
|
|
|
|
$(row).find('td:eq(7)').css('color', 'black');
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if(parseFloat(data[7].substring(0, data[7].indexOf("%"))) > 0.5){
|
|
|
|
|
|
|
|
$(row).find('td:eq(7)').css('color', 'orange');
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if(parseFloat(data[7].substring(0, data[7].indexOf("%"))) > 2){
|
|
|
|
|
|
|
|
$(row).find('td:eq(7)').css('color', 'red');
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Detecting TXing
|
|
|
|
if ( data[5] == "TXing" ) {
|
|
|
|
if ( data[5] == "TXing" ) {
|
|
|
|
$(row).addClass('red');
|
|
|
|
$(row).addClass('red');
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
$(row).removeClass('red');
|
|
|
|
$(row).removeClass('red');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"order": [[ 0, "desc" ]],
|
|
|
|
|
|
|
|
"columnDefs": [
|
|
|
|
|
|
|
|
{ className: "dt-nowrap", "targets": [ 0, 1, 2, 3, 7 ] }
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
"autoWidth": false
|
|
|
|
"autoWidth": false
|
|
|
|
} );
|
|
|
|
} );
|
|
|
|
|
|
|
|
|
|
|
|