jqGrid clientArray

时间:2011-02-23 15:56:08

标签: jquery jqgrid

我正在尝试使用jqGrid clientArray一次提交多个更新。 (我试图一次更新多行)。

        onSelectRow: function(id){
            if (id && id !== lastsel) {
                jQuery('#fnlusetaxlistings').saveRow(lastsel, true, 'clientArray');
                jQuery('#fnlusetaxlistings').editRow(id, true, null, null);
                lastsel = id;
            }
        },

这很好用,但我不知道如何检索clientArray并将其发送到服务器?如果有人可以发布将clientArray发送到服务器的示例,那将非常有用。

谢谢, 阿希什

1 个答案:

答案 0 :(得分:4)

没有“clientArray”,但有“data”参数是所有本地数据的对象。有关示例,请参阅thisthis答案。