farpoint合计列不参与排序实现方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了farpoint合计列不参与排序实现方法相关的知识,希望对你有一定的参考价值。
private void neuSpread1_AutoSortingColumn(object sender, FarPoint.Win.Spread.AutoSortingColumnEventArgs e)
{
//重写排序方法
e.Cancel = true;
FarPoint.Win.Spread.SortInfo[] sorter = new FarPoint.Win.Spread.SortInfo[1];
sorter[0] = new FarPoint.Win.Spread.SortInfo(e.Column, e.Ascending, System.Collections.Comparer.Default);
this.neuSpread1_Sheet1.SortRows(0, this.neuSpread1_Sheet1.Rows.Count - 1, sorter);
}
打印时需设置否则合计行打印不出来:
this.neuSpread1_Sheet1.PrintInfo.UseMax = false;
本文出自 “海的儿子” 博客,谢绝转载!
以上是关于farpoint合计列不参与排序实现方法的主要内容,如果未能解决你的问题,请参考以下文章
Extjs GridPanel在有分页的情况下服务端统计合计实现方式
vue elementUI -- table的任意列合计功能
ant design V3 实现table表格 添加底部合计行
ant design V3 实现table表格 添加底部合计行