Hi There
I have a list of tagged Items, when clicking on the tag it takes me to the tag search view where it lists items that are tagged with that tag.
The problem is that the pagination is not working on this page.
@model Orchard.Tags.ViewModels.TagsSearchViewModel
@{
Html.AddTitleParts(T("Tags").ToString());
Html.AddTitleParts(T("Contents tagged with {0}", Model.TagName).ToString());
Model.List.Classes.Add("tagged-posts");
Model.List.Classes.Add("content-items");
}
<h1 class="page-title">@T("Contents tagged with <span>{0}</span>", Model.TagName)</h1>
@Display(Model.List)
@Display(Model.Pager)
The code in the view adds the pager and the number of items displayed are based on the correct no of items to display.
But the pager is not being displayed