您好,那我们就不能用合并函数,只能通过样式来解决,我重写了左上部分的样式以及绘制
- grid.itemFormatter = function(panel, r, c, cell){
- if(panel.cellType === wijmo.grid.CellType.TopLeft && c ===0&&r===0){
- cell.innerHTML = '<div class="header-cell" style="height:90% ">序号</div>';
- cell.style='border-bottom:2px solid #eaeaea;';
- }
- if(panel.cellType === wijmo.grid.CellType.TopLeft && c ===0&&r===1){
- //donothing
- }
- if(panel.cellType === wijmo.grid.CellType.RowHeader && c ===0){
- cell.innerHTML = '<div class="header-cell">' + (r+1) + '</div>';
- }
- };
复制代码
希望能帮到您。 |