I'm not sure how this is an ASP.NET question, 1 million records is far too many for a human to read on the screen. Consider rethinking your design so that you're not returning so many records.
At max i said (But, this much records is not possible).
But, nearly 10,000 records atleast...
10,000 options in a select is far too many for a human to read. I recommend that you rethink the approach and find a way to filter the result or perhaps use a different UI element like a grid with paging.
Member
209 Points
701 Posts
Editable combobox not populating properly if more than 1 million records
Nov 02, 2018 10:48 AM|gani7787|LINK
Hi,
I am using editable dropdown for searching or selecting records.
This will be working fine if we have less number of records (for example < 100 records).
if we have more than 1 million records, then it will not populate anything and it got struct.
i am using asp.net dropdown with autocomplete jQuery.
How to solve this problem.?
sample code attached.
All-Star
53001 Points
23594 Posts
Re: Editable combobox not populating properly if more than 1 million records
Nov 02, 2018 11:31 AM|mgebhard|LINK
I'm not sure how this is an ASP.NET question, 1 million records is far too many for a human to read on the screen. Consider rethinking your design so that you're not returning so many records.
Member
209 Points
701 Posts
Re: Editable combobox not populating properly if more than 1 million records
Nov 02, 2018 11:43 AM|gani7787|LINK
thanks for your reply.
At max i said (But, this much records is not possible).
But, nearly 10,000 records atleast...
All-Star
53001 Points
23594 Posts
Re: Editable combobox not populating properly if more than 1 million records
Nov 02, 2018 11:50 AM|mgebhard|LINK
10,000 options in a select is far too many for a human to read. I recommend that you rethink the approach and find a way to filter the result or perhaps use a different UI element like a grid with paging.
Member
209 Points
701 Posts
Re: Editable combobox not populating properly if more than 1 million records
Feb 07, 2019 05:21 AM|gani7787|LINK
done..