Javascript jqGrid获取当前rowid

Javascript jqGrid获取当前rowid,javascript,jqgrid,Javascript,Jqgrid,我在cellEdit模式下有一个jgGrid。我需要获取当前的rowid,以便进一步处理(根据其他值将单元格设置为只读)。我找不到解决这个问题的方法,而且我尝试过的事件也没有成功 网格定义: var curRowId = -1; $("#grid").jqGrid({ datatype: 'json', mtype: 'GET', colNames: ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h',

我在cellEdit模式下有一个jgGrid。我需要获取当前的rowid,以便进一步处理(根据其他值将单元格设置为只读)。我找不到解决这个问题的方法,而且我尝试过的事件也没有成功

网格定义:

    var curRowId = -1;

    $("#grid").jqGrid({
        datatype: 'json',
        mtype: 'GET',
        colNames: ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's',],
        colModel: [
          { name: 'a', index: 'a', width: 30, formatter: 'checkbox', edittype: 'checkbox', editable: true },
          { name: 'b', index: 'b', width: 30, formatter: 'checkbox', edittype: 'checkbox', editable: true },
          { name: 'c', index: 'c', width: 70, formatter: 'date', editable: true, editrules: { required: true }, editoptions: { dataInit: function (elem) { $(elem).datepicker(); } } },
          { name: 'd', index: 'd', width: 65, editable: true, formatter: 'date', formatoptions: { srcformat: 'H:i:s', newformat: 'ShortTime' }, editrules: { time: true} },
          { name: 'e', index: 'e', width: 80, edittype: 'select', editable: true, formatter: 'select' },
          { name: 'f', index: 'f', width: 100, editable: true },
          { name: 'g', index: 'g', width: 80, editable: true },
          { name: 'h', index: 'h', width: 80, editable: true, editrules: { maxValue: 50} },
          { name: 'i', index: 'i', width: 120, edittype: 'select', editable: true, formatter: 'select' },
          { name: 'j', index: 'j', width: 200, edittype: 'select', editable: true, formatter: 'select' },
          { name: 'k', index: 'k', width: 70, edittype: 'select', editable: true, formatter: 'select' },
          { name: 'l', index: 'l', width: 70, editable: true, editrules: { maxValue: 10} },
          { name: 'm', index: 'm', width: 25, editable: false },
          { name: 'n', index: 'n', width: 70, editable: true, editrules: { integer: true, maxValue: 999999 }, formatter: formatPosition, unformat: unformatPosition },
          { name: 'o', index: 'o', width: 25, editable: true, editrules: { custom: true, custom_func: chkLongitudTecken} },
          { name: 'p', index: 'p', width: 80, editable: true, editrules: { integer: true, maxValue: 999999 }, formatter: formatPosition, unformat: unformatPosition },
          { name: 'q', index: 'q', width: 80, edittype: 'select', editable: true, formatter: 'select' },
          { name: 'r', index: 'r', width: 100, editable: true, editrules: { maxValue: 50} },
          { name: 's', index: 's', width: 65, edittype: 'select', editable: true, formatter: 'select' },
        ],
        cellEdit: true,
        cellsubmit: "clientArray",
        sortname: 'Datum',
        sortorder: 'desc',
        shrinkToFit: false,
        viewrecords: true,
        gridview: true,
        beforeCellEdit: function (id) {
            curRowId = id;
            alert("Here: " + curRowId);
        },
        onSelectRow: function (id) {
            curRowId = id;
            alert("test: " + curRowId);
        },
        height: 400,
        caption: 'My Cap'
    });
您可以在上面的代码中看到我尝试过的事件

我需要id,以便以后可以执行以下操作:

$("#grid").setColProp("k", {
    editoptions: { 
        value: data.opPadrag,
        dataEvents: [{ 
            type: 'change',
            fn: function (e) {
                alert(e.currentTarget.value);
                $(e).addClass("not-editable-cell");
            }
        }]
    }
});
找到了一个解决方案:

var selr = jQuery('#grid').jqGrid('getGridParam', 'selrow');
找到了一个解决方案:

var selr = jQuery('#grid').jqGrid('getGridParam', 'selrow');
将列数据作为行id指定为“键”。如果“key”属性未设置为特定的网格列,则将返回正确的行id

将列数据作为行id指定为“键”。如果“key”属性未设置为特定的网格列,则将返回正确的行id