是否可以调整网格中的行高以显示整个内容?
答案 0 :(得分:2)
您必须覆盖bootstrap css
.ngCell {
display : table-cell;
height: auto !important;
overflow:visible;
position: static;
}
.ngRow {
display : table-row;
height: auto !important;
position: static;
}
.ngCellText{
height: auto !important;
white-space: normal;
overflow:visible;
}