jqGrid获取当前rowid

问题描述:

我在cellEdit模式下有一个jgGrid。我需要获取当前rowid,以进行一些进一步处理(根据其他值将单元格设置为只读)。我无法找到一个方法,我试过的事件不会触发。jqGrid获取当前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'); 

jQuery('#grid').jqGrid('getGridParam', 'selrow') 

会给用作列数据行ID“键”。如果“key”属性没有设置为特定的网格列,那么将返回正确的行ID。