执行行操作后刷新MVCContrib Grid

时间:2011-01-28 14:55:47

标签: jquery mvccontrib-grid

我主要使用MVCContrib进行分页,排序和过滤。我的网格包含邮件列表应用程序中的所有地址(仅限后端)。用户可以删除,激活和取消激活列表成员,因此每行上都有这些选项的操作链接。使用jQuery,我正在捕获该单击并执行其他操作,例如操作的显示通知已完成。

因此,我遇到的问题是如何在执行这些操作后刷新网格,以便用户可以看到结果?在删除时,我可以隐藏该行。当某人激活/停用电子邮件时,我该怎么办?只需使用jQuery更新表中显示状态的值吗?

// Activate the email address
$(".ActivateLink").click(function() {
    var id = $(this).attr("href");
    var i = id.indexOf("#");
    id = id.substring(i + 1);
    $.ajaxSetup({ 'async': false });
    $.post("/List/Activate", { "id": id }, function(data) {
        $(".message").text(data.message).addClass("notice");
    }, "json");
    return false;
});

我的控制器操作:

    //
    // POST: /List/Activate
    [HttpPost]
    public ActionResult Activate(int id)
    {
        string message = String.Empty;
        db.ActivateEventEmail(id, ref message);
        return Json(new { message = message });
    }

我的观点:

<%= Html.Grid(Model.EmailAddressList).Columns(column => {
    column.For("ImageActions").Named("").Sortable(false);
    column.For(a => (a.Email.Length > 30) ? String.Format("{0}...", a.Email.Substring(0, 30)) : a.Email).Encode(true).SortColumnName("Email").Named("Email Address");
    column.For(a => (a.ContactName.Length > 30) ? String.Format("{0}...", a.ContactName.Substring(0, 30)) : a.ContactName).Encode(true).SortColumnName("ContactName").Named("Contact Name");
    column.For(a => a.SignupDate).Named("Signup Date").Format("{0:d}").Attributes(@style => "text-align: right;");
    column.For(a => a.AccountStatus ? "Yes" : "No").SortColumnName("AccountStatus").Named("Active").Attributes(@style => "text-align: center;");
}).Sort(Model.GridSortOptions)
    .Attributes(@class => "table-list", style => "width: 100%;").RowAttributes(c => new MvcContrib.Hash(@class => "gridrow"))
%>

1 个答案:

答案 0 :(得分:0)

好的,我想出来了。

首先,我只需要添加对函数的调用,我将在稍后的代码中添加。

// Activate the email address
$(".ActivateLink").live('click', function() {
    var id = $(this).attr("href");
    var i = id.indexOf("#");
    id = id.substring(i + 1);
    $.ajaxSetup({ 'async': false });
    $.post("/List/Activate", { "id": id }, function(data) {
        refreshTable();
        $(".message").text(data.message).addClass("notice");
    }, "json");
    return false;
});

上面的控制器动作,我没有触及上面的视图,我不碰。我创建的新javascript函数如下:

    function refreshTable() {
        $.ajaxSetup({
            async: false,
            cache: false
        });
        $.get('<%= Url.Action("Index", "List", new { filterText = Model.FilterText, filterActive = Model.FilterActive, filterGroup = Model.FilterGroup }) %>',
        function(response) {
            $(".table-list").replaceWith(response)
        });
    };

确保cache: false在那里。 IE喜欢从缓存中提取数据并真正弄乱一切。

在我的索引操作中,我从return View(emailListGrid);更改为

        if (Request.IsAjaxRequest())
            return PartialView("EmailMaint", emailListGrid);
        else
            return View(emailListGrid);