标签: vue.js ag-grid
对于ag-grid vuejs,如何在标头和单元格中都包裹文本?
这是我的示例代码。
https://codesandbox.io/embed/x98omwov3o
答案 0 :(得分:0)
不确定是否要在标头中换行,但这是为单元格做的方法。
在您的ColDef中,提供以下两个属性。
ColDef
cellClass: "cell-wrap-text", autoHeight: true,
CSS会像这样:.cell-wrap-text { white-space: normal !important; }
.cell-wrap-text { white-space: normal !important; }
还有一个可用于标题headerClass: "cell-wrap-text"的属性,但我尚无法实现。
headerClass: "cell-wrap-text"
希望它会有所帮助。