gpt4 book ai didi

javascript - jqGrid 获取当前rowid

转载 作者:行者123 更新时间:2023-11-30 07:05:47 24 4
gpt4 key购买 nike

我在 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');

关于javascript - jqGrid 获取当前rowid,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10085866/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com