-1

我是 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
}
4

1 回答 1

0

我在控制器中创建了一个名为 CustomerId 的静态变量。我不知道这是否会破坏任何东西。我只是想让它工作。

public static int customerId = 0;

在第二个网格的 Action 方法中,我分配了 CustomerId 值。

public JsonResult ThreeLevel_OrdersDataRequested(string parentRowID)
{
    var northWindModel = new NorthwindDataContext();
    var model = new ThreeLevelHierarchyJqGridModel();
    customerId = int.Parse(parentRowID);
    SetUpThreeLevelGrids(model);

    //code
}

访问了第三级网格中的全局静态变量。

public JsonResult ThreeLevel_OrderDetailsDataRequested(string parentRowID)
{    
    //Code
    var orderDetails = from o in myDbModel.MyCustomerOrderDetails
         where o.OrderID == Convert.ToInt32(parentRowID)
         and o.CustomerId == customerId //static global variable
         select o;

    //Code
}

如果有人对在第三级网格中获取第一级表的选定主键有更好的建议,请告诉我。

于 2014-10-10T16:01:44.320 回答