JqGrid把数据行插入指定位置的方法addRowData

Posted James wang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JqGrid把数据行插入指定位置的方法addRowData相关的知识,希望对你有一定的参考价值。

1、首页在colModel里写好方法,如下代码options.rowId是获取当前行的编号

{
   label: ‘操作‘, width: 60, align: ‘center‘, formatter: function (cellvalue, options, rowObject) {
   return ‘<span><a href="javascript:AddGridRow(‘ + options.rowId + ‘)" title="增加行">+</a>&nbsp;&nbsp;&nbsp;<a href="javascript:DelGridRow(‘ + options.rowId + ‘)"" title="删除行">-</a></span>‘; 
   }
},

2、增加到指定位置的方法如下:

AddGridRow = function (rowId) {
    var $grid = $("#gridTable");
    //在行号序列中获取最大的编号
    var maxRowId = Math.max.apply(Math, $grid.jqGrid(‘getDataIDs‘))
    window.setTimeout(function () {
        $grid.jqGrid("addRowData", maxRowId + 1, rowdata, "before", rowId);
    }, 200);

    //RefreshTotal();
}

注:“addRowData”是根据参数插入一行新的数据,rowid为新行的id,data为新行的数据,position为新增行的位置,srcrowid为新增行的参考位置。position可以为[first,last,before,after],如果是before或者after时需要指定相对的行ID编号

 

以上是关于JqGrid把数据行插入指定位置的方法addRowData的主要内容,如果未能解决你的问题,请参考以下文章

jQGrid TreeGrid 的内联导航 addRow 方法无法正常工作

jqgrid添加行并将数据发送到webservice以进行插入

在js中怎么改变jqgrid行数据

JQuery的jqGrid怎样获得选中行的所有数据?json数据。

jqGrid 编辑完数据后能返回到当前位置的方法

jqGrid行编辑配置,方法,事件