Developer forum

Forum » Dynamicweb 10 » CountryList empty - 10.12.6

CountryList empty - 10.12.6

Bjørn Ingebrigtsen
Reply

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)

GetLoop("UserManagement.CountryList")
This is working locally on 10.10.0
 
Is there a workaround or do we have to rollback to a previous version?
 
 

Replies

 
Nicolai Pedersen Dynamicweb Employee
Nicolai Pedersen
Reply

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

 
Bjørn Ingebrigtsen
Reply

URL

https://waterlogic.dw10.dynamicweb-cms.com/

 
Claus Kølbæk
Claus Kølbæk
Reply

Noticed it too - it is only in the add address context though - if you edit one, it is still there.

 
Nicolai Pedersen Dynamicweb Employee
Nicolai Pedersen
Reply

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.

 

 
Nicolai Pedersen Dynamicweb Employee
Nicolai Pedersen
Reply

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>
 
Bjørn Ingebrigtsen
Reply

Thanks!

 

You must be logged in to post in the forum