' +
							'| ' + this.col_time_on + '' +
							' | ' + this.col_call + '' +
							' | ' + this.col_band + '' +
							' | ' + mode + '' +
							' | ' + this.col_rst_sent + '' +
							' | ' + this.col_rst_rcvd + '' +
							' | ' + this.col_stx_string + '' +
							' | ' + this.col_srx_string + '' +
							' | ' + this.col_stx + '' +
							' | ' + this.col_srx + '' +
							' | ' + this.col_gridsquare + '' +
							' | ' + this.col_vucc_grids + '' +
							' | 
');
					});
					if (!$.fn.DataTable.isDataTable('.qsotable')) {
						$.fn.dataTable.moment('DD-MM-YYYY HH:mm:ss');
						$('.qsotable').DataTable({
							"stateSave": true,
							"pageLength": 25,
							responsive: false,
							"scrollY": "400px",
							"scrollCollapse": true,
							"paging": false,
							"scrollX": true,
							order: [0, 'desc'],
							"columnDefs": [
								{
									"render": function ( data, type, row ) {
										return pad(row[8],3);
									},
									"targets" : 8
								},
								{
									"render": function ( data, type, row ) {
										return pad(row[9],3);
									},
									"targets" : 9
								}
							]
						});
					}
				}
			});
		}
	} else {
		$("#exch_serial_s").val("1");
	}
}
function pad (str, max) {
	str = str.toString();
	return str.length < max ? pad("0" + str, max) : str;
}