Reputation: 1269
Is it possible to adjust the row height in the grid to display the entire content?
Upvotes: 5
Views: 5896
Reputation: 10586
You will have to override the 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;
}
Upvotes: 2