Column header wrapping when using Angular ui-grid

前端 未结 2 1981
一个人的身影
一个人的身影 2021-02-20 15:21

I have upgraded my AngularJS SPA application from ng-grid v2.0.7 to ui-grid v3 and my column headers no longer wrap around. My column headers are now s

2条回答
  •  悲&欢浪女
    2021-02-20 16:13

    I believe I have found a way of wrapping text in the header columns by overriding the ui-grid-cell-contents CSS class.

    .ui-grid-header-cell .ui-grid-cell-contents {
         height: 48px;
         white-space: normal;
         -ms-text-overflow: clip;
         -o-text-overflow: clip;
         text-overflow: clip;
         overflow: visible;
    }
    

    Adding this to my site.css I find the column names are now wrapping onto the next line as expected.

    Works in Chrome (v41) and Firefox (v35).

提交回复
热议问题