[Advanced Logbook] Added a button to set QSL not required

This commit is contained in:
Andreas
2023-05-03 13:00:01 +02:00
parent 22a2b1c61a
commit c192abaee6
2 changed files with 4 additions and 0 deletions

View File

@@ -181,6 +181,7 @@
<button type="button" class="btn btn-sm btn-success" id="sentDirect">Sent Direct</button>
<button type="button" class="btn btn-sm btn-success" id="sentElectronic">Sent Electronic</button>
<button type="button" class="btn btn-sm btn-warning" id="dontSend">Don't Send</button>
<button type="button" class="btn btn-sm btn-warning" id="notRequired">QSL Not Required</button>
<button type="button" class="btn btn-sm btn-info" id="exportAdif">Create ADIF</button>
<button type="button" class="btn btn-sm btn-danger" id="deleteQsos">Delete</button>
<span id="infoBox"></span>

View File

@@ -336,6 +336,9 @@ $(document).ready(function () {
$('#dontSend').click(function (event) {
handleQsl('N','', 'dontSend');
});
$('#notRequired').click(function (event) {
handleQsl('I','', 'notRequired');
});
$('#searchForm').on('reset', function(e) {
setTimeout(function() {