使用jquery ajax打开包含布局的视图页面

时间:2013-06-14 11:53:01

标签: ajax asp.net-mvc-3 jquery

如何使用jquery ajax打开包含布局的新页面?我需要在我的控制器中将strName返回到我的视图。

我的jquery ajax:

mvcJqGrid.demo.edit = function (id) {
     var urlEdit = '@Url.Action("Edit")';
        $.ajax({
        type:"GET",
        url:urlEdit,
        data:{strName: $('#customerGrid').jqGrid('getCell',id,'Client00130012')}
        });
    }

修改 * 我的视图控制器: *

public ActionResult Edit(string strName)
    {

        var q = from c in db.CanaClie0012
                join w in db.Clientes0013 on c.Client00130012 equals w.Client0013
                where c.Client00130012 == strName
                select new ClientModel
                {
                    CanaClie0012 = new CanaClie0012()
                    {
                        Client00130012 = c.Client00130012,
                        F1Pais00200012 = c.F1Pais00200012,
                        F1Cana02530012 = c.F1Cana02530012,
                        Direcc0012 = c.Direcc0012
                    },
                    Clientes0013 = new Clientes0013()
                    {
                        Client0013 = w.Client0013,
                        Nombre0013 = w.Nombre0013,
                        F1Pais00200013 = w.F1Pais00200013
                    }
                };

        return View(q);
    }

1 个答案:

答案 0 :(得分:1)

你以错误的方式做事; 如果您想打开模型页面,请尝试下一步。

首先,您需要在网格中构建网址链接,以使用Model.Id打开此编辑页面。 在jqGrid中,您需要使用列格式化程序。之后,您可以点击链接并打开编辑页面,如'site.com/controller/edit/6666'

colModel: [
{ name: 'ColumnName',
    formatter: function (cellvalue, options, rowObject) {
        return '<a href="/YourController/Edit/' + cellvalue + '">' + "Edit" + '</a>';
    } 
},

],

这应该有用。