Reputation: 2023
i have a column that i want to dynamically change the height but once i change the height you can see in the image the other column's height gets adjusted accordingly but their background column is brown now.
i changed the height of this css class
.ui-grid-cell{height:auto}
i want the background of other columns to be complely white, how can this be fixed?
Upvotes: 1
Views: 1354
Reputation: 7614
You may want to change the following in ui-grid.css
.cellheight .ui-grid-row {
display: table-row;
height: auto !important;
}
.cellheight .ui-grid-cell {
display: table-cell;
height: auto !important;
vertical-align: middle;
float: none;
}
.cellheight .ui-grid-cell-contents {
height: auto !important;
}
Upvotes: 1