Hi,
 
I am using simple pagination plugin in my page however the problem is that data is coming in chunks. So I am not able to see the pages when I am clicking on items per page tab
below is my code. Please help
 
@model ExternalUI.Models.ProductCatalog.ProductsViewModel
@{
Layout = string.Empty;
bool row = true;
ExternalUI.Models.ProductCatalog.PaginationSettings paginationSettings = new ExternalUI.Models.ProductCatalog.PaginationSettings();
paginationSettings.paginationPageAmount = 50;
var data = paginationSettings.paginationPageAmount;
}
Show up to:
Order By:
@**@
@foreach (KeyValuePair bodyField in Model.productBodyFields)
{
}
@foreach (var product in Model.productViewModels)
{
@foreach (KeyValuePair bodyField in Model.productBodyFields)
{
}
}
@Model.productTitleField.Key@bodyField.Key
@product.productData[Model.productTitleField.Value] @if (product.productData.Keys.Contains(@bodyField.Value))
{
if (bodyField.Key == "Status")
{
if (product.productData[bodyField.Value] == "41")
{
@: Buyer Review
}
else if (product.productData[bodyField.Value] == "53")
{
@: Product Info Change Review
}
}
else
{
@product.productData[bodyField.Value]
}
}
else
{
@: --
}