I am trying to convert from Telerik Blazor's suite as you have quite a few more controls than they have, but I am having a problem with the first component that I am trying to replace.
<SfDropDownList TValue="Int64"
TItem="Account"
Placeholder="Select Account"
@bind-Value="@SelectedAccountId"
DataSource="@ValidAccounts">
<DropDownListFieldSettings Value="Id" Text="IdName" />
</SfDropDownList>
My primary keys are all Int64's. The above code renders a disabled component. If I remove the TValue and TItem definitions, I still get a disabled component. But if I change it to use a list of objects with Int32's as the primary key, I get an enabled component that works fine.
This was my definition with Telerik's suite:
<TelerikDropDownList Data="@ValidAccounts"
@bind-Value="@SelectedAccountId"
TextField="IdName"
ValueField="Id" />
Is there any way around this with your controls?