目前我的网格如图所示。我想将第一个标题单元格的文本对齐方式更改为左侧,将第二个标题单元格更改为居中。有没有办法做到这一点?
答案 0 :(得分:1)
您可以在列定义中添加headerCellClass
属性:
headerCellClass: 'text-right'
headerCellClass: 'text-center'
然后在CSS文件中添加这两个类:
.text-right {
text-align: right;
}
.text-center {
text-align: center;
}