mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
Filter on single zones if force is not checked
This commit is contained in:
@@ -2729,10 +2729,14 @@ function saveOptions() {
|
||||
selectQsoIdDxcc($(this).first().closest('tr').attr('id')?.replace(/\D/g, ''), 'incorrectituzonetable');
|
||||
}
|
||||
});
|
||||
if (!$('#forceMultiZoneUpdate').prop("checked")) {
|
||||
$('#incorrectituzonetable').DataTable().column(8).search('^[^,]*$', true, false).draw();
|
||||
}
|
||||
} else {
|
||||
$('#incorrectituzonetable tbody tr').each(function (i) {
|
||||
unselectQsoIdDxcc($(this).first().closest('tr').attr('id')?.replace(/\D/g, ''), 'incorrectituzonetable');
|
||||
});
|
||||
$('#incorrectituzonetable').DataTable().column(8).search('').draw();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user