I want to manually set web drop down paging index manually like on page load, data comes from server by chunk wise then click next or previous paging number and load data into web drop down from server by another chunk. Is it possible ??? Please give solution as soon as possible....
Regards
Suday
Dear
I saw your attachment of webdropdown paging with objectdatasource. It's working fine no doubt but i have more concerns about paging in webdropdown.
I want to implement paging of webdropdown on Page_Load() event in code behind (cs file) and then set page index from code behind.
When I used both sever side paging and server side SelectionChanged event in webdropdown, selected item are not selected in dropdown. Need example of sever side paging and server side SelectionChanged event in webdropdown. Need your response earlier.
Hello Suday ,
I’m just following up to see if you’ve been able to resolve your issue. If you have any questions or concerns or if you need further assistance please let me know.
Best Regards,
Maya Kirova
Developer Support Engineer
Infragistics, Inc.
http://es.infragistics.com/support
Thank you for posting in our forum.
Generally when you enable paging for the dropdown the data for each page will be requested over an ajax callback and only the data for the current page will be send to the client.
Do you want the request to the data base to only get the data for the current page as well?
If that’s the case you could set an ObjectDataSource and enable its paging. Then in the SelectMethod you’d be able to pass two parameters: int startRowIndex, int maximumRows
Based on which you can build you data base query and return only the data for the current page.
For example refer to the attached sample and let me know if you’re trying to achieve something similar.
Developer Support Engineer II