



全文预览已结束
下载本文档
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
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. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 第三章 物态变化单元测试卷 (含答案)2025-2026学年人教版(2024)八年级物理上册
- 郑州荥阳市公益性岗位人员招聘考试真题2024
- 2025年山东省黄河三角洲农业高新技术产业示范区山东省师范类高校学生从业技能大赛一、二等奖获得者(13人)模拟试卷及一套答案详解
- 2025年智能交通系统与城市拥堵治理
- 2025年海洋能源利用:海水提铀吸附材料技术创新研究
- 2025年海洋能发电技术国际合作与市场拓展报告
- 2025湖北襄阳市枣阳市招聘事业单位人员206人考前自测高频考点模拟试题及答案详解(全优)
- 2025年春季中国邮政储蓄银行云南省分行校园招聘考前自测高频考点模拟试题附答案详解(模拟题)
- 2025春季陕汽控股校园招聘考前自测高频考点模拟试题及答案详解(考点梳理)
- 2025北京大学电子学院招聘劳动合同制1人考前自测高频考点模拟试题及一套完整答案详解
- 广东省2025年度初级注册安全工程师职业资格考试金属非金属矿山安全复习题及答案
- 湖南安全员c3考试试题及答案
- 2025年中学生心理健康测试题及答案
- 二年级防溺水教案
- 后厨设备安全操作培训课件
- 好风起二部合唱简谱致远音乐
- 我不是完美小孩
- 【超星尔雅学习通】海上丝绸之路网课章节答案
- 有趣的化学启蒙课
- 轻钢龙骨隔断墙施工合同协议书
- GB/T 18091-2015玻璃幕墙光热性能
评论
0/150
提交评论