Reloading grid
Name Surname Marital status Time stamp
Joe Crosswave Married 7/14/2025 9:01:50 PM
Merry Lisel Widowed 7/14/2025 9:01:50 PM
Henry Crux Single 7/14/2025 9:01:50 PM
Cody Jurut 7/14/2025 9:01:50 PM
Simon Scranton Single 7/14/2025 9:01:50 PM
Leena Laurent Divorced 7/14/2025 9:01:50 PM
Ode Cosmides Married 7/14/2025 9:01:50 PM
Diandra Mizner Single 7/14/2025 9:01:50 PM
Pete Cassel Married 7/14/2025 9:01:50 PM
Nicky Tremblay Married 7/14/2025 9:01:50 PM
Main view

@Html.AjaxGrid(Url.Action("IndexGrid"))

_IndexGrid partial view

@model IQueryable<Person>

@* Should only include grid declaration *@

@(Html
    .Grid(Model)
    .Build(columns =>
    {
        columns.Add(model => model.Name).Titled("Name");
        columns.Add(model => model.Surname).Titled("Surname");
        columns.Add(model => model.MaritalStatus).Titled("Marital status");

        columns.Add(model => DateTime.Now).Titled("Time stamp");
    })
)

Javascript

document.getElementById('ContentRefresh').addEventListener('click', function () {
    new MvcGrid(document.querySelector('.mvc-grid')).reload();
});

Controller

[HttpGet]
public ViewResult Index()
{
    return View();
}

[HttpGet]
public PartialViewResult IndexGrid()
{
    return PartialView("_IndexGrid", repository.GetPeople());
}