diff --git a/application/views/logbookadvanced/edit.php b/application/views/logbookadvanced/edit.php
index 30046a310..8746d048f 100644
--- a/application/views/logbookadvanced/edit.php
+++ b/application/views/logbookadvanced/edit.php
@@ -201,4 +201,5 @@
+
diff --git a/assets/js/sections/logbookadvanced_edit.js b/assets/js/sections/logbookadvanced_edit.js
index de46db2b7..fe79af156 100644
--- a/assets/js/sections/logbookadvanced_edit.js
+++ b/assets/js/sections/logbookadvanced_edit.js
@@ -207,6 +207,9 @@ function saveBatchEditQsos(id_list) {
if (column == 'dok') {
value = $("#editDokInput").val();
}
+ if (column == 'gridsquare') {
+ value = $("#editGridsquareInput").val();
+ }
$.ajax({
url: base_url + 'index.php/logbookadvanced/saveBatchEditQsos',
@@ -262,6 +265,7 @@ function changeEditType(type) {
$('#editDistanceInputLabel').hide();
$('#editDistanceInput').hide();
$('#editDokInput').hide();
+ $('#editGridsquareInput').hide();
if (type == "dxcc") {
$('#editDxcc').show();
} else if (type == "iota") {
@@ -305,7 +309,7 @@ function changeEditType(type) {
$('#editEqsl').show();
} else if (type == "continent") {
$('#editContinent').show();
- } else if (type == "gridsquare" || type == "sota" || type == "wwff" || type == "operator" || type == "pota" || type == "comment" || type == "qslvia" || type == "contest" || type == "qslmsg" || type == "stationpower" || type == 'stxstring' || type == 'rsts' || type == 'rstr') {
+ } else if (type == "sota" || type == "wwff" || type == "operator" || type == "pota" || type == "comment" || type == "qslvia" || type == "contest" || type == "qslmsg" || type == "stationpower" || type == 'stxstring' || type == 'rsts' || type == 'rstr') {
$('#editTextInput').show();
} else if (type == "region") {
$('#editRegion').show();
@@ -315,6 +319,8 @@ function changeEditType(type) {
$('#saveButton').prop("disabled", true);
} else if (type == "dok") {
$('#editDokInput').show();
+ } else if (type == "gridsquare") {
+ $('#editGridsquareInput').show();
} else if (type == "distance") {
$('#editDistanceInput').show();
$('#editDistanceInputLabel').show();