关于报表合并问题,请教~~~
616次浏览
编辑于2015年07月30日 09:49:09
“总计”可否按照“型号”进行分组? 目前是总计按照客户分类中"A"进行了分组,代码如下:
this.kDTable.getColumn("型号").setGroup(true);
this.kDTable.getColumn("客户分类").setGroup(true);
this.kDTable.getColumn("总计").setGroup(true);
我尝试着将代码的顺序进行更改,如下,也不行:
this.kDTable.getColumn("型号").setGroup(true);
this.kDTable.getColumn("总计").setGroup(true);
this.kDTable.getColumn("客户分类").setGroup(true);
表样如下:
推荐阅读