Show dxcc name instead of adif number

This commit is contained in:
Andreas Kristiansen
2025-12-16 13:05:23 +01:00
parent 8b912ce223
commit 80b2b340f1
4 changed files with 6 additions and 4 deletions

View File

@@ -2196,14 +2196,15 @@ function saveOptions() {
});
}
function openStateList(dxcc) {
function openStateList(dxcc, country) {
$('#openStateListBtn_' + dxcc).prop("disabled", true).addClass("running");
$.ajax({
url: base_url + 'index.php/logbookadvanced/OpenStateList',
type: 'post',
data: {
'dxcc': dxcc
'dxcc': dxcc,
'country': country
},
success: function (response) {
$('#openStateListBtn_' + dxcc).prop("disabled", false).removeClass("running");