使用 Select 2 下拉搜索超过 10000 的大数据

Using Select 2 drop down for large data more than 10000 Search

Hello every one i want to use select 2 drop down which can easily filter  
more than 10000 record butt in the given link  

http://jsfiddle.net/a8La61rL/10/

using script a large function that is not good to use in every page  
is there is any to use this script in a separate file and send list of array  
objects to this method for populating and searching 

这可以通过以下步骤实现。

1- 创建一个 ASPX 网络服务或网页函数,使用 C#/Vb 文件处理和 return 在 JSON 数组中从文件中获取这些记录的列表。

2- 使用 jQuery $.ajax 方法从 ASPX 函数或 Web 服务获取此 json 数组。

3-在jQuery成功事件中绑定select2。

这将成为一个调用,您可以在每个页面上包含此脚本并绑定数据。为了获得更好的性能,您还可以第一次从文件中获取并保存在会话或 cookie 中,每当任何其他页面调用时,它都会从会话或 cookie 中获取。如果需要,我可以进一步解释。