ASP.NET MVC 中使用DevExpress,如何实现DevExpress中的DataGrid直接绑定到当前页对象的集合和页码中,实现自定义分页和排序。
如:
public class Model
{
public Item[] Items { get; set; }
public Int32 PageIndex { get; set; }
public Int32 PageSize { get; set; }
public Int32 TotalItemCount { get; set; }
}
public class Item
{
...
}