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
860
Select item in WebDropDown when Paging or LoadOnDemand is enabled
posted

Hello,

is there a way to select an item in a paging or loadOnDemand enabled WebDropDown even if the item happens to be not on the first page?

FindItemByValue does not work. Inspecting a loadOnDemand enabled WebDropDown with a list of approx. 1000 items as datasource shows that there are e.g. 40 items in the items collection - which at least could be an explanation why FindItemByValue cannot find the item.

There are other posts concerning this issue:

all of which are not answered yet.

Are there any solutions to this issue?

Parents
No Data
Reply
  • 8160
    Verified Answer
    posted

    Hello Bernhardus,

    This is not supported. The idea of Paging and Manual Load On Demand is to improve the performance. When one of them is enabled then WebDropDown loads small piece of data (items). This reduce the bandwidth and processing overhead on both the server and the client.

     

    Probably it is possible to get item’s index from the datasource and then to calculate on which page it should be and then to select it explicitly when the page is changed for example.

Children