ag-grid vue在标题和单元格中包装文本

问题描述 投票:0回答:1

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

这是我的示例代码。

https://codesandbox.io/embed/x98omwov3o

vue.js ag-grid
1个回答
0
投票

不确定在标题中包装文本,但这是你可以为单元格做的。

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

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

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

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

希望它有所帮助。

© www.soinside.com 2019 - 2024. All rights reserved.