之前根据查看grand total行的共通性时,发现每一个grand total的cell都会包含“wj-aggregate”类,于是通过这个标识来过滤grand total的值,并实现cellData的值替换:
- gridPivot.formatItem.addHandler(function(s, e) {
- if(s.cells == e.panel) {
- if(wijmo.hasClass(e.cell, 'wj-aggregate') && e.row == gridPivot.rows.length - 1) {
- e.cell.innerHTML = 'hello~';
- }
- }
- });
复制代码 |