Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
775
web drop down is taking long time to load
posted

Hi ,

 We are using infragistics in our asp.net application. We are using infragistincs WebDropDown control to load list of names to select. But the number of names we are binding are around 8200 . because of this much data WebDropDown is taking so much time(almost one whole minute) to prepare the controls after page loaded. After web page is loaded to make the control responsive it is taking one minutes. This is a very big problem . Please suggest us how to deal with this type of problem.

Thanks in advance,

Parents
  • 24671
    Verified Answer
    posted

    Hi pkirankumar,

    you can use several optiizations:

    1) disable ASP.NET ViewState, EnableViewState=false

    2) make sure AutoFiltering is not set to "Client". not sure which version you are using, but if you are using a more recent one, items objects will be lazy-loaded  in that case, improving performance a lot

    3) Enable load on demand, so from your 8200 items, only a number of them are loaded in the control initially (you can still filter, select, etc.)

    Let me know if this helps. Thanks,

    Angel

Reply Children