这个问题已经在这里问过Angular ng-grid row height
但是如果我们使用 CSS 来解决影响页面响应和 ng-grid 的标题功能(如排序等)的问题,那都不能满足我的要求。
.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;
}
在不影响页面响应性的情况下有任何解决方案,必须通过纯 java 脚本/angularjs/css 来解决