国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

jQuery Easyui datagrid行內實現【添加】、【編輯】、【上移】、【下移】

2019-11-19 18:23:27
字體:
來源:轉載
供稿:網友

前幾天項目中遇到一個需求用到了Easyui datagrd行內添加和編輯數據,同時對行內數據上移下移,所以對這幾個功能做個總結。

1、首先大概說下這幾個功能里用到的主要方法,行內添加數據主要是添加列的editor屬性, 行內編輯主要使用beginEdit(), endEdit(),同時一個關鍵就是拿到當前的操作行索引editIndex.

2、撤銷用到了rejectChanges().

3、保存時使用getRows()或者getChanges(). getChanges()主要是獲取添加或編輯的數據,getRows()獲取到本頁所有數據,主要是配合【上移】【下移】方法使用。

4、在做這個功能中我使用了一個序列化前臺對象組件【json.js】,這個組件可以很方便的把前臺的對象轉化成json字符串,然后傳到后臺,實在是方便至極讓我眼前一亮,要知道就在這個功能前面我還手動處理數組,使用join()拼字符串,當找到這個組件時速度效率一下幾提起來了,實在是相見恨晚。

5、在做這個功能,用到這些方法時遇到的問題,剛開始時我是看easyui的官方demo,我發現添加數據后點保存,再點獲取數據時就獲取不到了,后經過測試發現好像是調用了acceptChanges()引起的問題。

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);      }          }      }); } 
<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);    }  }} 
[HttpPost] public ActionResult Create() {   string result = Request.Form[0];       //后臺拿到字符串時直接反序列化。根據需要自己處理   var list = JsonConvert.DeserializeObject<List<Student>>(result);    return Json(true); } 

截圖:

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持武林網。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 扶风县| 塔河县| 达州市| 平江县| 肇庆市| 鲁山县| 稷山县| 遂宁市| 托里县| 永城市| 乐至县| 奉节县| 金川县| 陕西省| 德化县| 阿荣旗| 兴山县| 绩溪县| 霍林郭勒市| 甘南县| 台北县| 衡南县| 曲周县| 荆州市| 鹿泉市| 炎陵县| 错那县| 彰化市| 张家口市| 辉县市| 嘉兴市| 万年县| 美姑县| 会理县| 仁化县| 甘肃省| 滨海县| 长丰县| 凤凰县| 驻马店市| 元朗区|