Hello,
After updaing to version 26.2.11 the SfDropDownList is not showing data. The following code snippet WAS WORKING on previous versions:
<SfDropDownList TItem="IDictionary<string, object>" FloatLabelType="@FloatLabelType.Auto"
@bind-Value="@lookupID" DataSource="@dataX" TValue="int">
<DropDownListFieldSettings Value="ID" Text="Description"></DropDownListFieldSettings>
</SfDropDownList>
@code{
public List<
IDictionary<string, object>
> dataX = GetRows();
}
I had to change all occurances of
IDictionary<string, object> to ExpandoObject in order to make it work
Regards,
Bill