Added CSV-export to various tables.

这个提交包含在:
Andreas 2020-10-19 19:16:42 +02:00
父节点 6f70c92b7c
当前提交 dbee35466e
共有 5 个文件被更改,包括 121 次插入10 次删除

查看文件

@ -168,7 +168,7 @@
echo '</table>
<h2>Summary</h2>
<table class="table-sm table table-bordered table-hover table-striped table-condensed text-center">
<table class="table-sm tablesummary table table-bordered table-hover table-striped table-condensed text-center">
<thead>
<tr><td></td>';

查看文件

@ -138,7 +138,7 @@
echo '</table>
<h2>Summary</h2>
<table class="table-sm table table-bordered table-hover table-striped table-condensed text-center">
<table class="table-sm tablesummary table table-bordered table-hover table-striped table-condensed text-center">
<thead>
<tr><td></td>';

查看文件

@ -129,7 +129,7 @@
echo '</table>
<h2>Summary</h2>
<table class="table-sm table table-bordered table-hover table-striped table-condensed text-center">
<table class="table-sm tablesummary table table-bordered table-hover table-striped table-condensed text-center">
<thead>
<tr><td></td>';

查看文件

@ -93,7 +93,7 @@
<h2>Summary</h2>
<table class="table table-sm table-bordered table-hover table-striped table-condensed text-center">
<table class="table tablesummary table-sm table-bordered table-hover table-striped table-condensed text-center">
<thead>
<tr><td></td>';

查看文件

@ -1474,6 +1474,18 @@ $(document).ready(function(){
'csv'
]
});
$('.tablesummary').DataTable({
info: false,
searching: false,
ordering: false,
"paging": false,
dom: 'Bfrtip',
buttons: [
'csv'
]
});
// using this to change color of csv-button if dark mode is chosen
var background = $('body').css( "background-color");
@ -1519,9 +1531,20 @@ $(document).ready(function(){
"scrollY": "400px",
"scrollCollapse": true,
"paging": false,
"scrollX": true
"scrollX": true,
dom: 'Bfrtip',
buttons: [
'csv'
]
});
// using this to change color of csv-button if dark mode is chosen
var background = $('body').css( "background-color");
if (background != ('rgb(255, 255, 255)')) {
$(".buttons-csv").css("color", "white");
}
function displayVuccContacts(gridsquare, band) {
var baseURL= "<?php echo base_url();?>";
$.ajax({
@ -1591,9 +1614,31 @@ $(document).ready(function(){
"scrollY": "400px",
"scrollCollapse": true,
"paging": false,
"scrollX": true
"scrollX": true,
dom: 'Bfrtip',
buttons: [
'csv'
]
});
$('.tablesummary').DataTable({
info: false,
searching: false,
ordering: false,
"paging": false,
dom: 'Bfrtip',
buttons: [
'csv'
]
});
// using this to change color of csv-button if dark mode is chosen
var background = $('body').css( "background-color");
if (background != ('rgb(255, 255, 255)')) {
$(".buttons-csv").css("color", "white");
}
function displayIotaContacts(iota, band) {
var baseURL= "<?php echo base_url();?>";
$.ajax({
@ -1632,9 +1677,31 @@ $(document).ready(function(){
"scrollY": "400px",
"scrollCollapse": true,
"paging": false,
"scrollX": true
"scrollX": true,
dom: 'Bfrtip',
buttons: [
'csv'
]
});
$('.tablesummary').DataTable({
info: false,
searching: false,
ordering: false,
"paging": false,
dom: 'Bfrtip',
buttons: [
'csv'
]
});
// using this to change color of csv-button if dark mode is chosen
var background = $('body').css( "background-color");
if (background != ('rgb(255, 255, 255)')) {
$(".buttons-csv").css("color", "white");
}
function displayCqContacts(cqzone, band) {
var baseURL= "<?php echo base_url();?>";
$.ajax({
@ -1672,9 +1739,31 @@ $(document).ready(function(){
"scrollY": "400px",
"scrollCollapse": true,
"paging": false,
"scrollX": true
"scrollX": true,
dom: 'Bfrtip',
buttons: [
'csv'
]
});
$('.tablesummary').DataTable({
info: false,
searching: false,
ordering: false,
"paging": false,
dom: 'Bfrtip',
buttons: [
'csv'
]
});
// using this to change color of csv-button if dark mode is chosen
var background = $('body').css( "background-color");
if (background != ('rgb(255, 255, 255)')) {
$(".buttons-csv").css("color", "white");
}
function displayWasContacts(was, band) {
var baseURL= "<?php echo base_url();?>";
$.ajax({
@ -1800,9 +1889,20 @@ $(document).ready(function(){
"scrollY": "500px",
"scrollCollapse": true,
"paging": false,
"scrollX": true
"scrollX": true,
dom: 'Bfrtip',
buttons: [
'csv'
]
});
// using this to change color of csv-button if dark mode is chosen
var background = $('body').css( "background-color");
if (background != ('rgb(255, 255, 255)')) {
$(".buttons-csv").css("color", "white");
}
function displayTimelineContacts(adif, band) {
var baseURL= "<?php echo base_url();?>";
$.ajax({
@ -2056,8 +2156,19 @@ $(document).ready(function(){
"scrollY": "400px",
"scrollCollapse": true,
"paging": false,
"scrollX": true
"scrollX": true,
dom: 'Bfrtip',
buttons: [
'csv'
]
});
// using this to change color of csv-button if dark mode is chosen
var background = $('body').css( "background-color");
if (background != ('rgb(255, 255, 255)')) {
$(".buttons-csv").css("color", "white");
}
}
});
}