0

我正在使用 $(document).ready 中设置的 jqGrid,如下所示:

jQuery("#list").jqGrid({
        datatype: 'json',
        colNames: ['ID', 'Note', 'Date Added'],
        colModel: [
            { name: 'ID', index: 'ID', width: 60, key: true },
            { name: 'ContactNote', index: 'ContactNote', width: 300, cellattr: function (rowId, tv, rawObject, cm, rdata) { return 'style="white-space: normal;"'; } },
            { name: 'ContactDate', index: 'DateAdded', width: 100 }
        ],
        mtype: 'POST',
        viewrecords: true,
        jsonReader: { repeatitems: false },
        ignoreCase: true,
        height: 450,
        loadonce: false,
        onSelectRow: function (id) { $('#ContactId').val(id); }
    });

这是页面的 HTML:

<div class="col-12">
<div class="ui-content-6 ui-widget-content ui-corner-all">
    @using (Html.BeginForm())
    {
        <h3 class="ui-widget-header ui-corner-all">Enter account number</h3>
        <div class="field-container">
            @Html.LabelFor(o => o.AccountNumber)
            @Html.TextBoxFor(o => o.AccountNumber)
        </div>

        <div class="form-submit">
            <button id="btnSearchContactItems">Get Contact Items</button>
        </div>

        <h3 class="ui-widget-header ui-corner-all">Contact item list</h3>

        <table id="list" class="scroll" cellpadding="0" cellspacing="0"></table>

        <div class="form-submit">
            <button id="btnRemoveContactItem" type="submit">Remove Selected Contact Item</button>
        </div>

        @Html.HiddenFor(o => o.ContactId)

        @Html.ValidationSummary()
    }
</div>

btnSearchContactItems 按钮有一个点击事件:

$("#btnSearchContactItems").click(function () {

        $("#list")
            .jqGrid('setGridParam', { postData: { accountNumber: $('#AccountNumber').val() }, url: baseSearchURL })
            .trigger('reloadGrid');

        return false;
    });

这是问题:

我让用户输入他们的帐号,然后单击 btnSearchContactItems 按钮,在网格中填写一些注释。When one of the notes is selected and the btnRemoveContactItem button is clicked the action is called and the note is removed. 问题是,一旦删除了 not ,网格就会清空。我想要发生的是让网格重新加载数据减去已删除的行。

我发誓,为了我的一生,我无法让数据重新填充。我尝试在网格加载、页面加载等中触发按钮单击,但仍然没有。如果我物理单击按钮,它只会再次填充网格。有人有什么想法吗?

4

1 回答 1

0

我怎么想你不想在页面开始时向服务器发送任何请求。为此,您可以datatype: "local"在创建网格时使用。您可以url: baseSearchURL在创建网格时设置。该参数将被忽略datatype: "local"

现在我回到你的主要问题:你可以postData直接在创建网格时定义选项,但你应该使用函数(方法)作为属性(详见答案):

postData: {
    accountNumber: function () {
        var account = $('#AccountNumber').val();
        return account ? account : null;
    }
}

accountNumber每次重新加载网格时都会调用该方法。所以你可以使用

$("#btnSearchContactItems").click(function () {
    $("#list").jqGrid('setGridParam', { datatype: "json" }}).trigger('reloadGrid');
    return false;
});

如果您愿意,您可以在click处理程序内部额外设置datatype: "local"if$('#AccountNumber').val()为空。

如果您真的不想将任何accountNumber属性发送到服务器它的值是null,或者""您可以使用serializeGridData以下形式

serializeGridData: function (postData) {
    var propertyName, propertyValue, dataToSend = {}, val;
    for (propertyName in postData) {
        if (postData.hasOwnProperty(propertyName)) {
            propertyValue = postData[propertyName];
            val = $.isFunction(propertyValue) ? propertyValue() : propertyValue;
            if (propertyName !== "accountNumber" || val) {
                // don't send "accountNumber" with empty value
                dataToSend[propertyName] = val;
            }
        }
    }
    return dataToSend; // ?? probably you can use JSON.stringify(dataToSend);
}

(详情见答案

此外,我建议您设置gridview: true以提高网格的性能并添加rowNum: 10000. jqGrid 旨在显示分页数据。你不使用pageroption,但是默认值为rowNum20。所以不设置rowNum: 10000jqGrid只会显示前20行数据。这不是你想要的。

于 2012-11-14T23:21:06.233 回答