Easyui datagrid行内【添加】、【编辑】、【上移】、【下移】
前几天项目中遇到一个需求用到了Easyui datagrd行内添加和编辑数据,同时对行内数据上移下移,所以对这几个功能做个总结。
1、首先大概说下这几个功能里用到的主要方法,行内添加数据主要是添加列的editor属性, 行内编辑主要使用beginEdit(), endEdit(),同时一个关键就是拿到当前的操作行索引editIndex.
2、撤销用到了rejectChanges().
3、保存时使用getRows()或者getChanges(). getChanges()主要是获取添加或编辑的数据,getRows()获取到本页所有数据,主要是配合【上移】【下移】方法使用。
4、在做这个功能中我使用了一个序列化前台对象组件【json.js】,这个组件可以很方便的把前台的对象转化成json字符串,然后传到后台,实在是方便至极让我眼前一亮,要知道就在这个功能前面我还手动处理数组,使用join()拼字符串,当找到这个组件时速度效率一下几提起来了,实在是相见恨晚。
5、在做这个功能,用到这些方法时遇到的问题,刚开始时我是看easyui的官方demo,我发现添加数据后点保存,再点获取数据时就获取不到了,后经过测试发现好像是调用了acceptChanges()引起的问题。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | function GetTable() { var editRow = undefined; $( "#Student_Table" ).datagrid({ height: 300, width: 450, title: '学生表' , collapsible: true , singleSelect: true , url: '/Home/StuList' , idField: 'ID' , columns: [[ { field: 'ID' , title: 'ID' , width: 100 }, { field: 'Name' , title: '姓名' , width: 100, editor: { type: 'text' , options: { required: true } } }, { field: 'Age' , title: '年龄' , width: 100, align: 'center' , editor: { type: 'text' , options: { required: true } } }, { field: 'Address' , title: '地址' , width: 100, align: 'center' , editor: { type: 'text' , options: { required: true } } } ]], toolbar: [{ text: '添加' , iconCls: 'icon-add' , handler: function () { if (editRow != undefined) { $( "#Student_Table" ).datagrid( 'endEdit' , editRow); } if (editRow == undefined) { $( "#Student_Table" ).datagrid( 'insertRow' , { index: 0, row: {} }); $( "#Student_Table" ).datagrid( 'beginEdit' , 0); editRow = 0; } } }, '-' , { text: '保存' , iconCls: 'icon-save' , handler: function () { $( "#Student_Table" ).datagrid( 'endEdit' , editRow); //如果调用acceptChanges(),使用getChanges()则获取不到编辑和新增的数据。 //使用JSON序列化datarow对象,发送到后台。 var rows = $( "#Student_Table" ).datagrid( 'getChanges' ); var rowstr = JSON.stringify(rows); $.post( '/Home/Create' , rowstr, function (data) { }); } }, '-' , { text: '撤销' , iconCls: 'icon-redo' , handler: function () { editRow = undefined; $( "#Student_Table" ).datagrid( 'rejectChanges' ); $( "#Student_Table" ).datagrid( 'unselectAll' ); } }, '-' , { text: '删除' , iconCls: 'icon-remove' , handler: function () { var row = $( "#Student_Table" ).datagrid( 'getSelections' ); } }, '-' , { text: '修改' , iconCls: 'icon-edit' , handler: function () { var row = $( "#Student_Table" ).datagrid( 'getSelected' ); if (row != null ) { if (editRow != undefined) { $( "#Student_Table" ).datagrid( 'endEdit' , editRow); } if (editRow == undefined) { var index = $( "#Student_Table" ).datagrid( 'getRowIndex' , row); $( "#Student_Table" ).datagrid( 'beginEdit' , index); editRow = index; $( "#Student_Table" ).datagrid( 'unselectAll' ); } } else { } } }, '-' , { text: '上移' , iconCls: 'icon-up' , handler: function () { MoveUp(); } }, '-' , { text: '下移' , iconCls: 'icon-down' , handler: function () { MoveDown(); } }], onAfterEdit: function (rowIndex, rowData, changes) { editRow = undefined; }, onDblClickRow: function (rowIndex, rowData) { if (editRow != undefined) { $( "#Student_Table" ).datagrid( 'endEdit' , editRow); } if (editRow == undefined) { $( "#Student_Table" ).datagrid( 'beginEdit' , rowIndex); editRow = rowIndex; } }, onClickRow: function (rowIndex,rowData){ if (editRow != undefined) { $( "#Student_Table" ).datagrid( 'endEdit' , editRow); } } }); } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | <br><br> //上移 function MoveUp() { var row = $( "#Student_Table" ).datagrid( 'getSelected' ); var index = $( "#Student_Table" ).datagrid( 'getRowIndex' , row); mysort(index, 'up' , 'Student_Table' ); } //下移 function MoveDown() { var row = $( "#Student_Table" ).datagrid( 'getSelected' ); var index = $( "#Student_Table" ).datagrid( 'getRowIndex' , row); mysort(index, 'down' , 'Student_Table' ); } function mysort(index, type, gridname) { if ( "up" == type) { if (index != 0) { var toup = $( '#' + gridname).datagrid( 'getData' ).rows[index]; var todown = $( '#' + gridname).datagrid( 'getData' ).rows[index - 1]; $( '#' + gridname).datagrid( 'getData' ).rows[index] = todown; $( '#' + gridname).datagrid( 'getData' ).rows[index - 1] = toup; $( '#' + gridname).datagrid( 'refreshRow' , index); $( '#' + gridname).datagrid( 'refreshRow' , index - 1); $( '#' + gridname).datagrid( 'selectRow' , index - 1); } } else if ( "down" == type) { var rows = $( '#' + gridname).datagrid( 'getRows' ).length; if (index != rows - 1) { var todown = $( '#' + gridname).datagrid( 'getData' ).rows[index]; var toup = $( '#' + gridname).datagrid( 'getData' ).rows[index + 1]; $( '#' + gridname).datagrid( 'getData' ).rows[index + 1] = todown; $( '#' + gridname).datagrid( 'getData' ).rows[index] = toup; $( '#' + gridname).datagrid( 'refreshRow' , index); $( '#' + gridname).datagrid( 'refreshRow' , index + 1); $( '#' + gridname).datagrid( 'selectRow' , index + 1); } } } |
1 2 3 4 5 6 7 8 9 10 | [HttpPost] public ActionResult Create() { string result = Request.Form[0]; //后台拿到字符串时直接反序列化。根据需要自己处理 var list = JsonConvert.DeserializeObject<List<Student>>(result); return Json( true ); } |
截图:
作者:sword-successful
出处:https://www.cnblogs.com/sword-successful/p/3386861.html
版权:本作品采用「署名-非商业性使用-相同方式共享 4.0 国际」许可协议进行许可。
博客地址: | http://www.cnblogs.com/sword-successful/ |
博客版权: | 本文以学习、研究和分享为主,欢迎转载,但必须在文章页面明显位置给出原文连接。 如果文中有不妥或者错误的地方还望高手的你指出,以免误人子弟。如果觉得本文对你有所帮助不如【推荐】一下!如果你有更好的建议,不如留言一起讨论,共同进步! 再次感谢您耐心的读完本篇文章。 |
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· 阿里巴巴 QwQ-32B真的超越了 DeepSeek R-1吗?
· 【译】Visual Studio 中新的强大生产力特性
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 【设计模式】告别冗长if-else语句:使用策略模式优化代码结构