关闭模式对话框后,jqGrid SetCell和SaveCell消隐单元格

时间:2012-05-11 13:51:22

标签: javascript jqgrid

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

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

不是设置和保存单元格值,而是将单元格消隐。不知道为什么。

以下是相关的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')来更新和保存单元格的内容。不知道为什么这不能成功。

1 个答案:

答案 0 :(得分:2)

如果有人遇到类似的问题,我可以使用它。我不得不将afterSaveCell处理程序添加到网格中:

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

FYI - base.selectedCode在模态中设置。

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

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

由于