This question was already asked here Angular ng-grid row height
but that are all not satisfy my requirement if we use CSS to fix problem it affect page responsiveness and ng-grid's header functionalities like sort,etc .
.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;
}
there is any solution for this without affecting page responsiveness and have to solve by pure java script / angularjs/css