Populate In-Place Editor DropDownList

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

3 Replies

IS Indrajith Srinivasan Syncfusion Team May 28, 2020 12:48 PM UTC

Hi Marcelo,

Greetings from Syncfusion support,


We have validated your reported query. We have already logged the virtual scrolling support for Dropdownlist as a feature in our end. It will be included in any of our upcoming release.
 
You can tract the status of the feature in the below feedback linkhttps://www.syncfusion.com/feedback/13013   

Regards, 
Indrajith 



MO Marcelo Oliveira Santos May 28, 2020 06:10 PM UTC

Hi Indrajith Srinivasan,

Thanks for the info.






PM Pandiyaraj Muniyandi Syncfusion Team May 30, 2020 01:08 PM UTC

Hi Marcelo, 
 
You are welcome!.  Please follow the feature status in the below feedback link. 
 
Regards, 
Pandiyaraj 


Loader.
Up arrow icon