I came across a similar question on this topic at Angular ng-grid row height
However, none of the solutions provided there meet my requirements. If I use CSS to fix the issue, it impacts the page's responsiveness and disrupts ng-grid's header functionalities such as sorting.
.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;
}
I am looking for a solution that does not compromise the page's responsiveness and can be resolved using pure JavaScript, AngularJS, or CSS.