所以我有 jqgrid 在 ASP.NET MVC 中工作的基本示例,javascript 看起来像这样:
$(document).ready(function() {
$("#list").jqGrid({
url: '../../Home/Example',
datatype: 'json',
myType: 'GET',
colNames: ['Id', 'Action', 'Parameters'],
colModel: [
{ name: 'id', index: 'id', width: 55, resizable: true },
{ name: 'action', index: 'action', width: 90, resizable: true },
{ name: 'paramters', index: 'parameters', width: 120, resizable: true}],
pager: $('#pager'),
rowNum: 10,
rowList: [10, 20, 30],
sortname: 'id',
sortorder: 'desc',
viewrecords: true,
multikey: "ctrlKey",
imgpath: '../../themes/basic/images',
caption: 'Messages'
});
现在我正在尝试实现他们在jqgrid 示例中的搜索按钮(单击操作/网格数据)。但我不明白他们是如何实现它的。我期待例如“search:true”和实现它的方法。
有没有人在 jqgrid 上实现了搜索,或者知道明确显示如何做到这一点的示例?