Telerik MVC网格Ajax参数?

时间:2011-09-24 20:16:04

标签: asp.net-mvc ajax telerik-grid telerik-mvc

我有点厌倦了试图计算Ajax网格参数。我已经创建了几个网格,这些参数看上去似乎很猥琐,我尝试了一件事,它不适用于一个,然后适用于另一个。

我的理解是,如果.DataKeys集合中存在这些参数,您真的不必将参数放在.DataBinding中吗?当它起作用时,它似乎是任意的,当它不起作用时。

有人能简单介绍一下Ajax网格绑定并将参数传递给控制器​​,以便我可以选择数据来填充它吗?为什么我需要定义参数,有时它像魔术一样工作?

最近,每一个小小的想法似乎都是与Telerik MVC控件的争斗,甚至是我之前做过5-6次的事情。

在这种情况下: LineItemID是主键,JobID是外键。我真的想将JobID传递给select绑定。我想抓住具有特定JobID的所有订单项。

查看:

@{  Grid<viaLanguage.Jams.Data.tblJobManagementLineItem> grid = Html.Telerik().Grid<viaLanguage.Jams.Data.tblJobManagementLineItem>()
        .Name("InvoiceLineItemsGrid")
        .DataKeys(keys =>
        {
            keys.Add(i => i.LineItemID);//.RouteKey("LineItemID");
            keys.Add(i => i.JobID);//.RouteKey("jobID");
        })
        .DataBinding(dataBinding => dataBinding.Ajax()
            .Select("_SelectInvoiceLineItems", "Job", new { jobID = "<#= JobID #>" })
            .Insert("_InsertJobInvoice", "Job")
            .Update("_UpdateJobInvoice", "Job")
            .Delete("_DeleteJobInvoice", "Job"))
        .ToolBar(commands => commands.Insert().HtmlAttributes(new { style = "margin-left:0" }))
        .Columns(columns =>
        {
            columns.Bound(l => l.JobID);
            columns.Bound(l => l.LineItemDescr).Width(180).HeaderTemplate("Task");
            columns.Bound(l => l.LanguagePairID).Width(100).HeaderTemplate("Language Pair").ClientTemplate("<#= LanguagePair #>");
            columns.Bound(l => l.SourceWordCount).Width(100).HeaderTemplate("Source Words");            
            columns.Bound(l => l.QtyToInvoice).Width(100).HeaderTemplate("Quantity to Invoice");
            columns.Bound(l => l.Rate).Width(50).Format("${0:0.000}").HeaderHtmlAttributes(new { style = "text-align: center;" }).HtmlAttributes(new { style = "text-align: center;" });
            columns.Bound(l => l.SubTotal).Width(100).Format("{0:c}");
            columns.Command(commands =>
            {
                commands.Edit().ButtonType(GridButtonType.Image);
                commands.Delete().ButtonType(GridButtonType.Image);
            }).Width(80).HtmlAttributes(new { style = "white-space: nowrap;" });
        })
        .Resizable(resizing => resizing.Columns(true))
        .Sortable()
        .Selectable()
        .Pageable(paging => paging.PageSize(10))
        .Scrollable(c => c.Height("233px"))
        .Filterable();

    StringWriter sw = new StringWriter();
    grid.Render();
    grid.WriteInitializationScript(sw);
}           

@Html.Hidden("InvoiceLineItemsGrid_tGrid", sw.GetStringBuilder().ToString())

控制器:

[GridAction]
public ActionResult _SelectInvoiceLineItems(int jobID)
{
    logLogic.logger.Debug(logLogic.GetMethodName() + ": User '" + User.Identity.Name);
    return View(new GridModel(jobLogic.GetInvoiceLineItems(jobID, User.Identity.Name)));
}

提前感谢任何见解。 史蒂夫

2 个答案:

答案 0 :(得分:1)

在Teleriks论坛上看到similar question。 我使用OnDataBinding事件,如本文所述: On passing parameters to controller from AJAX binding call

适合我。使用Telerik扩展2012 Q2。

答案 1 :(得分:1)

尝试为您希望(需要)在控制器上自动获取的每个dataKey指定.RouteKey(“someName”),“someName”应与操作参数名称相同。