Click here to Skip to main content
15,892,674 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
I am unable to bind more than 1000 record on editable dropdown while i need 70000 record to bind record on editable dropdown .
how to bind that large amount of data on editable dropdownList.

please help....
thanks in advance

What I have tried:

I am able to bind less than 1000 record on editable dropdwon .
Posted
Updated 21-Feb-19 0:12am

A dropdown is not suitable for that amount of data. Use a search\filter mechanism to reduce the number of items in your data set and maybe make a dropdown once you get them to a hundred or so, or use some other suitable display mechanism like a paged table.
 
Share this answer
 
Comments
Member 14157929 26-Feb-19 5:06am    
because i need both key and value of data which we can find easily by dropdown.
if we use textbox for search then how to find both key and value form search box.
Why do you think that dumping 70,000 records onto any type of control is a good solution? It's simple for you to do , but ... it's useless to the user because it'll be unbelievably slow - if it works at all, and it probably won't: it'll use memory like you wouldn't believe - and it will take them more time than they would wish to spare just to find the single entry they are looking for.

How long does it take to open a 70,000 item drop down list? How long does it take to scroll through it to the 69,997th item - which was the one the user wanted this time?

Just because you can do something, doesn't mean you should: I'd close the page and never visit your site again ...
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900