aggrid 行高自适应
1
2
3
4
5
6
7
8
9
10
11
12
{
headerName: "本周工作目标",
field: "jobContent",
cellRenderer: "TBHtml",
autoHeight: true, // 需要的列加一下
flex: 1,
},
// 需要的cellRenderer class
.tbhtml {
white-space: normal;
line-height: 24px;
}
This post is licensed under CC BY 4.0 by the author.