詳解datagrid使用方法(重要)
1、將靜態(tài)HTML渲染為datagrid樣式
<!-- 方式一:將靜態(tài)HTML渲染為datagrid樣式 --> <table class="easyui-datagrid"> <thead> <tr> <th data-options="field:'id'">編號(hào)</th> <th data-options="field:'name'">姓名</th> <th data-options="field:'age'">年齡</th> </tr> </thead> <tbody> <tr> <td>001</td> <td>小明</td> <td>90</td> </tr> <tr> <td>002</td> <td>老王</td> <td>3</td> </tr> </tbody> </table>
2、發(fā)送ajax請(qǐng)求獲取json數(shù)據(jù)創(chuàng)建datagrid 提供json文件
<!-- 方式二:發(fā)送ajax請(qǐng)求獲取json數(shù)據(jù)創(chuàng)建datagrid --> <table data-options="url:'${pageContext.request.contextPath }/json/datagrid_data.json'" class="easyui-datagrid"> <thead> <tr> <th data-options="field:'id'">編號(hào)</th> <th data-options="field:'name'">姓名</th> <th data-options="field:'age'">年齡</th> </tr> </thead> </table>
2、使用easyUI提供的API創(chuàng)建datagrid(掌握)
<!-- 方式三:使用easyUI提供的API創(chuàng)建datagrid --> <script type="text/javascript"> $(function(){ //頁(yè)面加載完成后,創(chuàng)建數(shù)據(jù)表格datagrid $("#mytable").datagrid({ //定義標(biāo)題行所有的列 columns:[[ {title:'編號(hào)',field:'id',checkbox:true}, {title:'姓名',field:'name'}, {title:'年齡',field:'age'}, {title:'地址',field:'address'} ]], //指定數(shù)據(jù)表格發(fā)送ajax請(qǐng)求的地址 url:'${pageContext.request.contextPath }/json/datagrid_data.json', rownumbers:true, singleSelect:true, //定義工具欄 toolbar:[ {text:'添加',iconCls:'icon-add', //為按鈕綁定單擊事件 handler:function(){ alert('add...'); } }, {text:'刪除',iconCls:'icon-remove'}, {text:'修改',iconCls:'icon-edit'}, {text:'查詢',iconCls:'icon-search'} ], //顯示分頁(yè)條 pagination:true }); }); </script>
如果數(shù)據(jù)表格中使用了分頁(yè)條,要求服務(wù)端響應(yīng)的json變?yōu)椋?/p>
請(qǐng)求
響應(yīng):
3、案例:取派員分頁(yè)查詢
(1)頁(yè)面調(diào)整
修改頁(yè)面中datagrid的URL地址
(2)服務(wù)端實(shí)現(xiàn)
分裝分頁(yè)相關(guān)屬性
/** * 通用分頁(yè)查詢方法 */ public void pageQuery(PageBean pageBean) { int currentPage = pageBean.getCurrentPage(); int pageSize = pageBean.getPageSize(); DetachedCriteria detachedCriteria = pageBean.getDetachedCriteria(); //查詢total---總數(shù)據(jù)量 detachedCriteria.setProjection(Projections.rowCount());//指定hibernate框架發(fā)出sql的形式----》select count(*) from bc_staff; List<Long> countList = (List<Long>) this.getHibernateTemplate().findByCriteria(detachedCriteria); Long count = countList.get(0); pageBean.setTotal(count.intValue()); //查詢r(jià)ows---當(dāng)前頁(yè)需要展示的數(shù)據(jù)集合
(3)detachedCriteria.setProjection(null);//指定hibernate框架發(fā)出sql的形式----》select * from bc_staff
int firstResult = (currentPage - 1) * pageSize; int maxResults = pageSize; List rows = this.getHibernateTemplate().findByCriteria(detachedCriteria, firstResult, maxResults); pageBean.setRows(rows); }
//屬性驅(qū)動(dòng),接收頁(yè)面提交的分頁(yè)參數(shù) private int page; private int rows; /** * 分頁(yè)查詢方法 * @throws IOException */ public String pageQuery() throws IOException{ PageBean pageBean = new PageBean(); pageBean.setCurrentPage(page); pageBean.setPageSize(rows); //創(chuàng)建離線提交查詢對(duì)象 DetachedCriteria detachedCriteria = DetachedCriteria.forClass(Staff.class); pageBean.setDetachedCriteria(detachedCriteria); staffService.pageQuery(pageBean); //使用json-lib將PageBean對(duì)象轉(zhuǎn)為json,通過(guò)輸出流寫回頁(yè)面中 //JSONObject---將單一對(duì)象轉(zhuǎn)為json //JSONArray----將數(shù)組或者集合對(duì)象轉(zhuǎn)為json JsonConfig jsonConfig = new JsonConfig(); //指定哪些屬性不需要轉(zhuǎn)json jsonConfig.setExcludes(new String[]{"currentPage","detachedCriteria","pageSize"}); String json = JSONObject.fromObject(pageBean,jsonConfig).toString(); ServletActionContext.getResponse().setContentType("text/json;charset=utf-8"); ServletActionContext.getResponse().getWriter().print(json); return NONE; }
取派員的批量刪除
在取派員表中存在一個(gè)刪除標(biāo)識(shí)位deltag,1表示已刪除,0表示未刪除
(1)頁(yè)面調(diào)整
//修改刪除按鈕綁定的事件: function doDelete(){ //獲取數(shù)據(jù)表格中所有選中的行,返回?cái)?shù)組對(duì)象 var rows = $("#grid").datagrid("getSelections"); if(rows.length == 0){ //沒(méi)有選中記錄,彈出提示 $.messager.alert("提示信息","請(qǐng)選擇需要?jiǎng)h除的取派員!","warning"); }else{ //選中了取派員,彈出確認(rèn)框 $.messager.confirm("刪除確認(rèn)","你確定要?jiǎng)h除選中的取派員嗎?",function(r){ if(r){ var array = new Array(); //確定,發(fā)送請(qǐng)求 //獲取所有選中的取派員的id for(var i=0;i<rows.length;i++){ var staff = rows[i];//json對(duì)象 var id = staff.id; array.push(id); } var ids = array.join(",");//1,2,3,4,5 location.href = "staffAction_deleteBatch.action?ids="+ids; } }); } }
(2)服務(wù)端實(shí)現(xiàn)第一步:在StaffAction中創(chuàng)建deleteBatch批量刪除方法
//屬性驅(qū)動(dòng),接收頁(yè)面提交的ids參數(shù) private String ids; /** * 取派員批量刪除 */ public String deleteBatch(){ staffService.deleteBatch(ids); return LIST; }
第二步:在Service中提供批量刪除方法
/** * 取派員批量刪除 * 邏輯刪除,將deltag改為1 */ public void deleteBatch(String ids) {//1,2,3,4 if(StringUtils.isNotBlank(ids)){ String[] staffIds = ids.split(","); for (String id : staffIds) { staffDao.executeUpdate("staff.delete", id); } } }
第三步:在Staff.hbm.xml中提供HQL語(yǔ)句,用于邏輯刪除取派員
<!-- 取派員邏輯刪除 --> <query name="staff.delete"> UPDATE Staff SET deltag = '1' WHERE id = ? </query>
取派員修改功能
(1)頁(yè)面調(diào)整 第一步:為數(shù)據(jù)表格綁定雙擊事件
第二步:復(fù)制頁(yè)面中添加取派員窗口,獲得修改取派員窗口
第三步:定義function
//數(shù)據(jù)表格綁定的雙擊行事件對(duì)應(yīng)的函數(shù) function doDblClickRow(rowIndex, rowData){ //打開(kāi)修改取派員窗口 $('#editStaffWindow').window("open"); //使用form表單對(duì)象的load方法回顯數(shù)據(jù) $("#editStaffForm").form("load",rowData); }
(2)服務(wù)端實(shí)現(xiàn) 在StaffAction中創(chuàng)建edit方法,修改取派員信息
/** * 修改取派員信息 */ public String edit(){ //顯查詢數(shù)據(jù)庫(kù),根據(jù)id查詢?cè)紨?shù)據(jù) Staff staff = staffService.findById(model.getId()); //使用頁(yè)面提交的數(shù)據(jù)進(jìn)行覆蓋 staff.setName(model.getName()); staff.setTelephone(model.getTelephone()); staff.setHaspda(model.getHaspda()); staff.setStandard(model.getStandard()); staff.setStation(model.getStation()); staffService.update(staff); return LIST; }
到此這篇關(guān)于詳解datagrid使用方法(重要)的文章就介紹到這了,更多相關(guān)datagrid使用方法內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
基于JS簡(jiǎn)單實(shí)現(xiàn)手持彈幕功能+文字抖動(dòng)特效代碼
這篇文章主要介紹了基于JS簡(jiǎn)單實(shí)現(xiàn)手持彈幕功能+文字抖動(dòng)特效代碼,本文給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2021-03-03JavaScript中無(wú)法通過(guò)div.style.left獲取值的解決方法
這篇文章主要介紹了JavaScript中無(wú)法通過(guò)div.style.left獲取值的問(wèn)題分析及解決方法,需要的朋友可以參考下2017-02-02原生JavaScript寫出Tabs標(biāo)簽頁(yè)的實(shí)例代碼
這篇文章主要介紹了原生JavaScript寫出Tabs標(biāo)簽頁(yè)的實(shí)例代碼,本文通過(guò)實(shí)例代碼給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2020-07-07關(guān)于Promise基本方法的簡(jiǎn)單實(shí)現(xiàn)
Promise大家一定都不陌生了,JavaScript異步流程從最初的Callback,到Promise,到Generator,再到目前使用最多的Async/Await,下面這篇文章主要給大家介紹了關(guān)于Promise基本方法的簡(jiǎn)單實(shí)現(xiàn),需要的朋友可以參考下2022-02-02使用 UniApp 實(shí)現(xiàn)小程序的微信登錄功能
這篇文章主要介紹了使用 UniApp 實(shí)現(xiàn)小程序的微信登錄功能,本文通過(guò)實(shí)例代碼給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2020-06-06javascript getBoundingClientRect() 來(lái)獲取頁(yè)面元素的位置的代碼[修正版]
該方法已經(jīng)不再是IE Only了,F(xiàn)F3.0+和Opera9.5+已經(jīng)支持了該方法,可以說(shuō)在獲得頁(yè)面元素位置上效率能有很大的提高,在以前版本的Opera和Firefox中必須通過(guò)循環(huán)來(lái)獲得元素在頁(yè)面中的絕對(duì)位置。2009-05-05基于JS實(shí)現(xiàn)導(dǎo)航條flash導(dǎo)航條
flash導(dǎo)航條在網(wǎng)站建設(shè)中應(yīng)用比較廣泛,此種效果給瀏覽者帶來(lái)極好的視覺(jué)效果,非常棒,下面小編給大家介紹基于JS實(shí)現(xiàn)導(dǎo)航條flash導(dǎo)航條,非常不錯(cuò),具有參考借鑒價(jià)值,感興趣的朋友一起學(xué)習(xí)吧2016-06-06