Hi,
What's wrong with the code below?
customerList has 5270 records
Is there virtualization In-place Editor component?
<SfInPlaceEditor Mode="RenderMode.Inline" Type="InputType.DropDownList" Value="DropDownValue" Model="DropModel"/>
public string DropDownValue = "Customer";
public SfDropDownList<string, string> DropModel = new SfDropDownList<string, string>()
{
Placeholder = "Select a customer",
DataSource = DataManager
};
protected override async Task OnInitializedAsync()
{
customerList = await customerManager.GetList();
DataManager = customerList.Select(I => Convert.ToString(I.Name)).ToArray();
Debug.WriteLine(DataManager.Length.ToString()); ///5270 records
}
Thank you