我是 JqGrid 的新手,请帮我解决这个请求。
我有一个 3 级分层 JqGrid 设置,如链接所示。它不完全相同,但非常相似。我的要求是在扩展CustomerGrid
时也传递 's 主键。OrderGrid
或者简而言之,我想拥有
public void SetUpThreeLevelGrids(ThreeLevelHierarchyJqGridModel model)
{
var customersGrid = model.CustomersGrid;
// code here
int cId;
//cId = <CustomerId from the CustomerGrid>; //*****How to get this******
ordersGrid.DataUrl = Url.Action("ThreeLevel_OrdersDataRequested", new { customerId = cId });
// code here
}
我想使用传递给ThreeLevel_OrderDetailsDataRequested
方法的变量:
public JsonResult ThreeLevel_OrderDetailsDataRequested(int customerId, string parentRowID)
{
// code here
}