C1FlexGrid: 对绑定的数据对象排序

近期,使用业务对象作为数据源是十分常见的案例。在这里,不是直接与 Data provider 通信操作数据。C1FlexGrid 直接与客户端缓存数据对象交互。但是,通过 Data Provider 提供的数据缓存和存储在客户端的缓存有所不同。使用后者,我们将无法使用 C1Flexgrid 排序特性。这是不尽如人意的。引用实际工作中案例-最近有用户使用 C1FlexGrid 绑定 BindingList。但是,排序功能无法正常使用。然而,MS-Access 和 SQL 绑定到 C1FlexGrid 时,支持排序功能,因为这两种数据源类型本身支持排序。BindingList 没有提供排序接口。为了实现该功能,我们可以继承该类,重载 (ApplySortCore, RemoveSortCore, SupportsSortingCore, SortDirectionCore 等)方法。

发布于 2013/03/14 00:00

SpreadJS

近期,使用业务对象作为数据源是十分常见的案例。在这里,不是直接与 Data provider 通信操作数据。C1FlexGrid 直接与客户端缓存数据对象交互。但是,通过 Data Provider 提供的数据缓存和存储在客户端的缓存有所不同。使用后者,我们将无法使用 C1Flexgrid 排序特性。这是不尽如人意的。

引用实际工作中案例-最近有用户使用 C1FlexGrid 绑定 BindingList。但是,排序功能无法正常使用。然而,MS-Access SQL 绑定到 C1FlexGrid 时,支持排序功能,因为这两种数据源类型本身支持排序。BindingList 没有提供排序接口。为了实现该功能,我们可以继承该类,重载 (ApplySortCore, RemoveSortCore, SupportsSortingCore, SortDirectionCore 等)方法。

下面代码为基类:

public class Sales 
{ 
public Sales() 
{ 
  SaleDate = DateTime.Now; 
} 
public SortedBindingList<Book> SaleDetails { get; set; } 
public string Dealer { get; set; } 
public string Customer { get; set; } 
public DateTime SaleDate { get; set; } 
public decimal TotalAmount 
{ 
  get 
  { 
   return SaleDetails.Sum(a => a.TotalAmount); 
  } 
} 
} 
public class Book 
{ 
public string Title { get; set; } 
public int Quantity { get; set; } 
public decimal Cost { get; set; } 
public decimal TotalAmount 
{ 
  get 
  { 
   return Cost * Quantity; 
  } 
} 
}

最后,创建商业对象列表,用于绑定 C1FlexGrid:

var sales = new[] { 
  new Sales(){ 
      Customer = "John Smith", 
      SaleDate = new DateTime(2008,1,1), 
      Dealer = "James Franco", 
      SaleDetails = new SortedBindingList<Book>(){ 
        new Book(){ 
          Title = "Pride And Prejudice", 
          Quantity = 1, 
          Cost = 25 
        }, 
        new Book(){ 
        Title = "Jane Eyer", 
        Quantity = 2, 
        Cost = 35 
        }, 
        new Book(){ 
        Title = "Wuthering Heights", 
        Quantity = 1, 
        Cost = 55 
        } 
      } 
    }, 
   new Sales(){ 
     Customer = "John Ayers", 
     SaleDate = new DateTime(2008,1,2), 
     Dealer = "Tom Cruise", 
     SaleDetails = new SortedBindingList<Book>(){ 
       new Book(){ 
        Title = "Emma", 
        Quantity = 1, 
        Cost = 80 
       }, 
       new Book(){ 
       Title = "Sense And Sensibility", 
       Quantity = 5, 
       Cost = 100 
       }, 
       new Book(){ 
       Title = "Romeo And Juliet", 
       Quantity = 3, 
       Cost = 50 
       } 
     } 
   } 
}; 
//BindingList set as grid's DataSource 
this.c1FlexGrid1.DataSource = new SortedBindingList<Sales>(sales);

现在,C1FlexGrid 已经绑定了 BindingList。以下代码用于显示排序指示器:

this.c1FlexGrid1.AfterSort += (s1, e1) => 
{ 
  var flex = s1 as C1.Win.C1FlexGrid.C1FlexGrid; 
  flex.Invalidate(); 
  flex.ShowSortAt(e1.Order, e1.Col); 
};

 

Download CS Sample
Download VB Sample

SpreadJS | 下载试用

纯前端表格控件SpreadJS,兼容 450 种以上的 Excel 公式,具备“高性能、跨平台、与 Excel 高度兼容”的产品特性,备受华为、苏宁易购、天弘基金等行业龙头企业的青睐,并被中国软件行业协会认定为“中国优秀软件产品”。SpreadJS 可为用户提供类 Excel 的功能,满足表格文档协同编辑、 数据填报、 类 Excel 报表设计等业务场景需求,极大的降低企业研发成本和项目交付风险。

如下资源列表,可以为您评估产品提供帮助:

相关产品
推荐相关案例
推荐相关资源
关注微信
葡萄城社区二维码

关注“葡萄城社区”

活字格低代码二维码

关注“活字格低代码”

想了解更多信息,请联系我们, 随时掌握技术资源和产品动态