欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

jQuery Easyui datagrid行內(nèi)實(shí)現(xiàn)【添加】、【編輯】、【上移】、【下移】

 更新時(shí)間:2016年12月19日 14:33:49   作者:garfieldzf  
本篇文章主要介紹jQuery Easyui datagrid行內(nèi)實(shí)現(xiàn)【添加】、【編輯】、【上移】、【下移】 。datagrid現(xiàn)在具有行編輯能力了,可以添加和編輯數(shù)據(jù),同時(shí)對(duì)行內(nèi)數(shù)據(jù)上移下移。

前幾天項(xiàng)目中遇到一個(gè)需求用到了Easyui datagrd行內(nèi)添加和編輯數(shù)據(jù),同時(shí)對(duì)行內(nèi)數(shù)據(jù)上移下移,所以對(duì)這幾個(gè)功能做個(gè)總結(jié)。

1、首先大概說(shuō)下這幾個(gè)功能里用到的主要方法,行內(nèi)添加數(shù)據(jù)主要是添加列的editor屬性, 行內(nèi)編輯主要使用beginEdit(), endEdit(),同時(shí)一個(gè)關(guān)鍵就是拿到當(dāng)前的操作行索引editIndex.

2、撤銷用到了rejectChanges().

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

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

5、在做這個(gè)功能,用到這些方法時(shí)遇到的問(wèn)題,剛開(kāi)始時(shí)我是看easyui的官方demo,我發(fā)現(xiàn)添加數(shù)據(jù)后點(diǎn)保存,再點(diǎn)獲取數(shù)據(jù)時(shí)就獲取不到了,后經(jīng)過(guò)測(cè)試發(fā)現(xiàn)好像是調(diào)用了acceptChanges()引起的問(wèn)題。

function GetTable() {

  var editRow = undefined;

 

  $("#Student_Table").datagrid({

    height: 300,

    width: 450,

    title: '學(xué)生表',

    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);

        //如果調(diào)用acceptChanges(),使用getChanges()則獲取不到編輯和新增的數(shù)據(jù)。

        //使用JSON序列化datarow對(duì)象,發(fā)送到后臺(tái)。

        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];

    

   //后臺(tái)拿到字符串時(shí)直接反序列化。根據(jù)需要自己處理

   var list = JsonConvert.DeserializeObject<List<Student>>(result);

 

   return Json(true);

 } 

截圖:

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評(píng)論