1

我有一个单元格可编辑的 jqgrid,其列的编辑类型为“按钮”。单击单元格时,将出现按钮。单击按钮时,会出现一个模式对话框,允许用户从网格中选择一个值。这一切都很好。

当用户从网格中选择一个值后单击模式对话框上的“确定”按钮时,我想用用户选择的值设置单元格值并保存单元格。

不是设置和保存单元格值,而是空白单元格。不知道为什么。

这是相关的 jqGrid / modal 对话框代码:

// global variables
base.selectedCode = null;
base.liaGridSelectedId = null;
base.liaGridSelectedICol = null;
base.liaGridSelectedIRow = null;

    $("#liaGrid").jqGrid({
        datatype: "local",
        data: base.liaGridData,
        cellEdit: true,
        cellsubmit: 'clientArray',
        height: 140,
        colNames: ['ID', 'Class Code', 'State', 'Location Type'],
        colModel: [
                    { name: 'id', index: 'id', width: 90, sorttype: "int", editable: false, hidden: true },
                    { name: 'ClassCode', index: 'ClassCode', width: 90, sortable: false, editable: true, edittype: "button",
                        editoptions: {
                            dataEvents: [{
                                type: 'click',
                                fn: function (e) {
                                    e.preventDefault();
                                    var rowid = $('#liaGrid').jqGrid('getGridParam', 'selrow');
                                    base.liaGridSelectedId = parseInt(rowid);
                                    $('#class-dialog').dialog('option', { width: 100, height: 200, position: 'center', title: 'Pick a Class' });
                                    $('#class-dialog').dialog('open');

                                    return true;
                                }
                            }]
                        }
                    },
                    { name: 'LocationType', index: 'LocationType', width: 90, sortable: false, editable: true, edittype: "select", editoptions: { value: "0:;1:Rural;2:Suburban;3:Urban"} }
                ],
        caption: "Liability Model",
        beforeEditCell: function (rowid, cellname, value, iRow, iCol) {
            base.liaGridSelectedICol = iCol;
            base.liaGridSelectedIRow = iRow;
        }
    });


    var infoDialog = $('#class-dialog').dialog({
        autoOpen: false,
        modal: true,
        show: 'fade',
        hide: 'fade',
        resizable: true,
        buttons: {
            "Ok": function () {
                if (base.selectedCode != null) {

                    $("#liaGrid").jqGrid('setCell', base.liaGridSelectedId, 'ClassCode', base.selectedCode);

                    $("#liaGrid").jqGrid('saveCell', base.liaGridSelectedIRow, base.liaGridSelectedICol);

                    $(this).dialog("close");
                }
            },
            "Cancel": function () {
                $(this).dialog("close");
            }
        }

    });

如上所示,我正在尝试使用 jqGrid('setCell') 和 jqGrid('saveCell') 来更新和保存单元格的内容。不知道为什么这没有成功。

4

1 回答 1

2

如果有人遇到类似问题,我可以让它工作。我必须将afterSaveCell处理程序添加到网格中:

afterSaveCell: function (rowid, name, val, iRow, iCol) {
    if (base.liaGridSelectedICol == 1) {
        $("#liaGrid").jqGrid('setRowData', rowid, { ClassCode: base.selectedCode });
    }
}

仅供参考 - base.selectedCode 在模态中设置。

奇怪的是,这只在调用 setCell 和 saveCell 方法后才有效。如果没有这些在单元级别设置和保存的不成功调用,则不会调用上述处理程序。

如果有人有更合适的方法来解决这个问题,我想听听。

谢谢

于 2012-05-11T17:42:59.973 回答