ag-grid vue在标题和单元格中换行

时间:2018-09-06 23:53:29

标签: vue.js ag-grid

对于ag-grid vuejs,如何在标头和单元格中都包裹文本?

这是我的示例代码。

https://codesandbox.io/embed/x98omwov3o

1 个答案:

答案 0 :(得分:0)

不确定是否要在标头中换行,但这是为单元格做的方法。

在您的ColDef中,提供以下两个属性。

  cellClass: "cell-wrap-text",
  autoHeight: true,

CSS会像这样:.cell-wrap-text { white-space: normal !important; }

还有一个可用于标题headerClass: "cell-wrap-text"的属性,但我尚无法实现。

希望它会有所帮助。