RadzenDropDownDataGrid binding broken as 3.18.10

When using 3.18.10 or newer, displaying the text of the bound item is not working. 3.18.9 and earlier works as expected.

<RadzenDropDownDataGrid 
                ref="@grid" 
                TValue="int" 
                LoadData="@LoadControllerData" 
                AllowFiltering="true" 
                AllowSorting="true" 
                AllowClear="true" 
                Placeholder="Select Target Controller"
                Data=@controllers 
                Count="@controllersCount" 
                TextProperty="DisplayName" 
                ValueProperty="ID"
                class="form-control" 
                id="controller" 
                @bind-Value="@Record.TargetControllerID">
                <Columns>
                    <RadzenDropDownDataGridColumn Property="DisplayName" Title="Controller ID" />
                </Columns>
            </RadzenDropDownDataGrid>

We will need runnable snippet, you can use our demos to replicate it and paste the code here.

Update: We were able to reproduce it, fix will be published later today!

1 Like