Hi
We are running R2, and now on 10.12.6, and it seems that CountryList is now empty. This is when adding a new address (/Files/Templates/Designs/Swift/UserManagement/Addresses/AddAddress.cshtml)
Hi
We are running R2, and now on 10.12.6, and it seems that CountryList is now empty. This is when adding a new address (/Files/Templates/Designs/Swift/UserManagement/Addresses/AddAddress.cshtml)
Hi Bjørn
Can you provide a URL. Just checked and we have 0 changes in this code for a very long time and it just returns a list of countries out of .net. So I think something else is off...
BR Nicolai
URL
https://waterlogic.dw10.dynamicweb-cms.com/
Noticed it too - it is only in the add address context though - if you edit one, it is still there.
Yes, I have it reproduced.
It is related to nullable enable has been added to that project.
I have create a bug, 23416, and there is a pull request awaiting approval.
Workaround in AddAddresstemplate is to add this instead of the loop:
<div class="g-col-12 g-col-lg-3"> <div class="form-floating"> <select class="form-select" id="UserManagement_Form_CountryCode" name="CountryCode" onchange="swift.Places.changeCountry(this.value);"> <option selected>@Translate("Select country")</option> @{ CultureInfo[] cultures = CultureInfo.GetCultures(CultureTypes.SpecificCultures); foreach (CultureInfo culture in cultures.OrderBy(r => r.EnglishName)) { try { RegionInfo region = new(culture.Name); //In some cases, the TwoLetterISORegionName property may have more than two characters if (region is not null && region.TwoLetterISORegionName.Length <= 2) { string selected = region.TwoLetterISORegionName == currentCountry ? "selected" : ""; <option value="@region.TwoLetterISORegionName" @selected>@region.DisplayName</option> } } catch { continue; } } } </select> <label for="UserManagement_Form_CountryCode" class="form-label">@Translate("Country")</label> </div> </div>
Thanks!
You must be logged in to post in the forum