Thursday, 5 September 2013

MVC 4 PagedList - its makes my pages into a list

MVC 4 PagedList - its makes my pages into a list

I have got a page where I'm using the Nuget package PagedList.Mvc 4.3.0.0
(The latest version for MVC4). The problem is that when I'm listing the
pages its makes my pages into a list of which look like
«
Showing items 1 through 5 of 17.
»

Instead of « Showing items 1 through 5 of 17. »
My view looks like
<div class="pagedList" >
@Html.PagedListPager(Model, page=> Url.Action("index", new { page
}), PagedListRenderOptions.MinimalWithItemCountText)
</div>
Any suggestions on what could be wrong? The standard CSS is included as well.

No comments:

Post a Comment