I am using PagedList.Mvc and have a bit of problem. So I have an Index view where I can select country from a dropdownlist and submit using ajax.
View:
@model testModel.Models.Test
@using (Ajax.BeginForm("GetEmployee", "Test", new AjaxOptions
{
HttpMethod = "POST",
UpdateTargetId = "showResult"
}))
{
@Html.AntiForgeryToken()
@Html.DropDownList("CountryId", null, "-- Select Country --")
<input type="submit" value="Search" class="btn btn-default" />
}
<div id="showResult"></div>
In my GetEmployee Controller method, I am looping through the db and pass the model object to the partial view.
Controller:
[HttpPost]
public ActionResult GetEmployee(int CountryId, int? page)
{
var model = db.Employee
.Include(x => x.Country)
.Where(x => x.Country.CountryId == CountryId)
.ToList();
int pageSize = 3;
int pageNumber = (page ?? 1);
return PartialView("PartialEmployee", model.ToPagedList(pageNumber, pageSize));
}
In my partialEmployee view, I am showing the employee names in the table.
PartialEmployee view:
@model PagedList.IPagedList<testModel.Models.Employee>
@using PagedList.Mvc;
<link href="~/Content/PagedList.css" rel="stylesheet" type="text/css" />
@{
Layout = null;
}
<table class="table table-hover">
<tr>
<th>Username</th>
</tr>
@foreach (var item in Model)
{
<tr>
<td>
@Html.DisplayFor(modelItem => item.EmployeeName)
</td>
</tr>
}
</table>
<br />
Page @(Model.PageCount < Model.PageNumber ? 0 : Model.PageNumber) of @Model.PageCount
<div id="contentPager">
@Html.PagedListPager(Model, page => Url.Action("Index", new { page }))
</div>
So the problem here is that when I click on the next page (ex: 2) it returns back to the index page without any table showing in UpdateTargetId.
<div id="showResult"></div>
Any suggestions or sample codes would be greatly appreciated.