我正在使用 $(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 ,网格就会清空。我想要发生的是让网格重新加载数据减去已删除的行。
我发誓,为了我的一生,我无法让数据重新填充。我尝试在网格加载、页面加载等中触发按钮单击,但仍然没有。如果我物理单击按钮,它只会再次填充网格。有人有什么想法吗?