我有一個簡單的jqGrid如何將自定義過濾器參數添加到MvcJqGrid postData,它已經在beforeRequest上過濾了?
@(Html.Grid("something")
.SetCaption("")
.AddColumn(new Column("ID").SetHidden(true))
.AddColumn(new Column("Name").SetLabel("Name").SetSearch(true))
.SetUrl(Url.Action(something))
)
我在JavaScript有var SomeOtherID = 2
。 我需要添加此SomeOtherID過濾網格加載時的參數(實際上有許多網格在同一頁面上,他們都需要這個),而不會失去默認的seatch功能。我懷疑我需要添加此功能上.OnBeforeRequest("addSomeOtherID()")
但做內部
function addSomeOtherID(grid)
{
var pd = grid.getGridParams("postData");
?????? here I need to add SomeOtherID to postData filters
grid.setGridParams({postData: pd});
}
tnx確實是從測試:) – SpoksST 2013-05-03 10:13:02