本文整理汇总了C#中PagedList.ToJqGridData方法的典型用法代码示例。如果您正苦于以下问题:C# PagedList.ToJqGridData方法的具体用法?C# PagedList.ToJqGridData怎么用?C# PagedList.ToJqGridData使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PagedList
的用法示例。
在下文中一共展示了PagedList.ToJqGridData方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: XmlLoadAjaxPost
public ActionResult XmlLoadAjaxPost(JqGridPost post)
{
var products = new PagedList<Product>(
_productRepository.Table.OrderBy(m => m.ProductID), post.page, post.rows);
var jqRows = products.Select(item => new GridRow
{
Id = item.ProductID.ToString(),
Cell = { item.ProductID, item.Name, item.Size, item.ProductCategory.Name, item.ListPrice }
}).ToList();
var json = products.ToJqGridData(post.page, jqRows);
return Content(json.ToData().ToXml(), "text/xml");
}
示例2: UsingNavigatorsAjaxPost
public JsonResult UsingNavigatorsAjaxPost(JqGridPost post)
{
var product = new PagedList<Product>(
_productRepository.Table.OrderBy(m => m.ProductID), post.page, post.rows);
var jqRows = product.Select(item => new GridRow
{
Id = item.ProductID.ToString(),
Cell = { item.ProductID, item.Name, item.Size, item.ProductCategory.Name, item.ListPrice }
}).ToList();
var json = product.ToJqGridData(post.page, jqRows);
return Json(json.ToData(), JsonRequestBehavior.AllowGet);
}
示例3: OtherInputBoxesJsonData
//ToDo: Add edit delete features with different input boxes
public ActionResult OtherInputBoxesJsonData(JqGridPost post)
{
//var productList = _productRepository.Table.ToList();
using (var ctx = new AdventureWorksLTEntities())
{
var product = new PagedList<Product>(
ctx.Product.OrderBy(m => m.ProductID), post.page, post.rows);
var jqRows = product.Select(item => new GridRow
{
Id = item.ProductID.ToString(),
Cell = {item.ProductID, item.Name, item.Size, item.ProductCategory.Name, item.ListPrice}
}).ToList();
var json = product.ToJqGridData(post.page, jqRows);
return Json(json.ToData(), JsonRequestBehavior.AllowGet);
//return new XmlResult(json);
}
}