COL_PROP_MODE); ?>>COL_PROP_MODE); ?>
diff --git a/application/views/station_profile/edit.php b/application/views/station_profile/edit.php
index 48223a04..9ca115be 100644
--- a/application/views/station_profile/edit.php
+++ b/application/views/station_profile/edit.php
@@ -760,6 +760,26 @@
+
+
+
+
+
+
diff --git a/assets/css/general.css b/assets/css/general.css
index b3efbcb6..e3f2a813 100644
--- a/assets/css/general.css
+++ b/assets/css/general.css
@@ -346,6 +346,10 @@ TD.lotw {
position: absolute !important;
}
+.dropdown-menu.menuOnResultTab {
+ left: -200px;
+}
+
.was-map-dialog .modal-dialog {
width: 100%;
}
@@ -796,7 +800,7 @@ label {
}
.table-responsive>table .dropdown{position:static;}
-.table-responsive>table .dropdown>.dropdown-menu{left:auto !important;top:auto !important;}
+.table-responsive>table .dropdown>.dropdown-menu{left: 75%;top:auto !important;}
tr.htmx-swapping td {
opacity: 0;
@@ -805,4 +809,4 @@ tr.htmx-swapping td {
.error-red-border {
border-color: red;
-}
\ No newline at end of file
+}
diff --git a/assets/js/sections/station_locations.js b/assets/js/sections/station_locations.js
index 7e67e16c..8568a096 100644
--- a/assets/js/sections/station_locations.js
+++ b/assets/js/sections/station_locations.js
@@ -40,11 +40,12 @@ $(document).ready( function () {
'170': 'nz_state',
'209': 'belgium_state',
'248': 'italy_state',
+ '263': 'netherlands_state',
'6': 'us_state' // Alaska
};
// Hide all states initially
- $("#canada_state, #aland_state, #asiatic_russia_state, #belarus_state, #mexico_state, #eu_russia_state, #argentina_state, #brazil_state, #chile_state, #us_state, #paraguay_state, #korea_state, #uruguay_state, #venezuela_state, #australia_state, #png_state, #nz_state, #belgium_state, #italy_state").hide();
+ $("#canada_state, #aland_state, #asiatic_russia_state, #belarus_state, #mexico_state, #eu_russia_state, #argentina_state, #brazil_state, #chile_state, #us_state, #paraguay_state, #korea_state, #uruguay_state, #venezuela_state, #australia_state, #png_state, #nz_state, #belgium_state, #italy_state, #netherlands_state").hide();
/**
* Gets the selected DXCC ID and shows the corresponding state.
*/
@@ -68,7 +69,7 @@ $(document).ready( function () {
var stateToShow = stateMap[selectedValue] || stateMap['default'];
// Hide all states
- $("#mexico_state, #belarus_state, #asiatic_russia_state, #aland_state, #canada_state, #us_state, #eu_russia_state, #argentina_state, #brazil_state, #chile_state, #paraguay_state, #korea_state, #uruguay_state, #venezuela_state, #australia_state, #png_state, #nz_state, #belgium_state, #italy_state").hide();
+ $("#mexico_state, #belarus_state, #asiatic_russia_state, #aland_state, #canada_state, #us_state, #eu_russia_state, #argentina_state, #brazil_state, #chile_state, #paraguay_state, #korea_state, #uruguay_state, #venezuela_state, #australia_state, #png_state, #nz_state, #belgium_state, #italy_state, #netherlands_state").hide();
// Show the selected state
$("#" + stateToShow).show();