



全文预览已结束
下载本文档
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
link rel=stylesheet media=screen type=text/css href= script type =text/javascript src = 注意jsp页面的代码,即它有两种格式,一种是input,一种是select,当是select的时候,不能用ajax.第一种写死的数据的:Loading Array Data function resultFormatResult(medata) return medata.text; function resultFormatSelection(medata) return medata.text; var data=id:New,text:New,id:Open,text:Open,id:Close,text:Close; $(#status).select2( placeholder: Search for a user, /multiple:true, /多选 data: results: data, text: text , formatSelection: resultFormatResult, formatResult: resultFormatResult ); $(#status).select2(val, New);/单选 var preload_data = id: New, text: New, locked: true , id: Open, text: Open ; $(#status).select2(data,preload_data);/多选第二种从后台获取数据最友好的一种:Loading Array Datafunction initUsersSelect(selectId) var realNames = getAllUsers(); $(#+selectId).select2( placeholder:Please Select one, data: results: realNames, text: text , formatSelection: resultFormatResult, formatResult: resultFormatResult );第三种从后台获取数据:Loading Remote Data $(#projectLeader).select2( placeholder: Search for a user, minimumInputLength: 2, ajax: / instead of writing the function to execute the request we use Select2s convenient helper url: system/findUsersByCondition, dataType: json, data: function (term, page) return realName: term, / search term page_limit: 10 ; , results: function (data, page) / parse the results into the format expected by Select2. / since we are using custom formatting functions we do not need to alter remote JSON data var realNames = new Array(); for (var i = 0; i data.length; i+) realNames.push(id: datai.userId, text: datai.realName); return results: realNames; , formatResult: resultFormatResult, / omitted for brevity, see the source of this page formatSelection: resultFormatSelection, / omitted for brevity, see the source of this page dropdownCssClass: bigdrop, / apply css that makes the dropdown taller escapeMarkup: function (m) return m; / we do not want to escape markup since we are displaying html in results );第四种从后台获取数据:Infinite Scroll with Remote Data $(#projectLeader).select2( placeholder: Please select one, minimumInputLength: 2, ajax: url: system/findUsers, dataType: json, quietMillis: 100, data: function (term, page) / page is the one-based page number tracked by Select2 return name: term, /search term iDisplayStart: (page-1)*10, iDisplayLength: 10 ; , results: function (data, page) var more = (page * 10) data.totalRecords; / whether or not there are more results available var realNames = new Array(); for (var i = 0; i data.totalDisplayRecords; i+) realNames.push(id: data.resultsi.realName, text: data.resultsi.realName); return results: realNames,more:more; , formatResult: resultFormatResult, / omitted for brevity, see the source of this page formatSelection: resultFormatResult, / omitted for brevity, see the source of this page dropdownCssClass: bigdrop, / apply css that makes the dropdown taller escapeMarkup: function (m) return m; / we do not want to escape markup since we are displaying html in results );action: public String findUsers() try String param = parameters .get(name ); if (param != null) String name = param0; queryConditionDTO .setName(name); int iDisplayStart = 0; int iDisplayLength = 0; String iDisplayStarts = parameters .get(iDisplayStart ); if (iDisplayStarts != null) iDisplayStart = Integer.valueOf(iDisplayStarts0); String iDisplayLengths = parameters .get(iDisplayLength ); if (iDisplayLengths != null) iDisplayLength = Integer.valueOf(iDisplayLengths0); Page userPage = userService .findUsers(queryConditionDTO , iDisplayStart / iDisplayLength +1, iDisplayLength); results = userPage.getObjectsList(); totalRecords = userPage.getTotalRecordsCount(); totalDisplayRecords = (long ) userPage.getObjectsList().size(); return processSuccess(); catch (Exception ex) return processException(ex); 第五种从后台获取数据的: Please Select one $realName $(#projectLeader).select2( placeholder: Search for a user, minimumInputLength: 2, formatResult: resultFormatResult, / omitted for brevity, see the source of thi
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
评论
0/150
提交评论