Add fields to dataset table report

This commit is contained in:
2023-06-07 16:59:30 +02:00
parent 61d76a8651
commit 13af6b83d4
11 changed files with 120 additions and 61 deletions

View File

@@ -44,5 +44,8 @@ body {
padding-left: 0.5rem;
}
.nav-benchmark{
color:yellow;
}

View File

@@ -14,4 +14,14 @@ $(document).ready(function () {
$(document).ajaxStop(function(){
$("body").removeClass('ajaxLoading');
});
});
});
function remove_plus(a, b) {
var aa = a.split('±')[0]
var bb = b.split('±')[0]
return aa - bb
}
function remove_dot(a, b) {
var aa = a.replace(',', '').replace('.', '')
var bb = b.replace(',', '').replace('.', '')
return aa - bb
}