Welcome to the Blazor feedback portal. We’re happy you’re here! If you have feedback on how to improve the Blazor, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
While trying to open the DropDownList, then console error is occurred if we bind the List
Code:
|
@using Syncfusion.Blazor.DropDowns <SfDropDownList TValue="string" TItem="string" DataSource="DropDownData" Value="DropdownVal" EnableRtl="false"> <DropDownListEvents TItem="string" ValueChange="PageSizeChanged" TValue="string"></DropDownListEvents> </SfDropDownList> @code{ public string DropdownVal { get; set; } = "12"; public List<string> DropDownData = new List<string>() { "All", "1", "2","12" }; public void PageSizeChanged() { } } |
Issue Screenshot:
