Turnoff Scrolling within Angular UI ng-grid?

后端 未结 4 2108
再見小時候
再見小時候 2020-12-29 11:13

We would like to use the Angular UI ng-grid, but can\'t seem to find an option to tell the viewport within the grid to not set the overflow to auto and not scroll.

W

4条回答
  •  暖寄归人
    2020-12-29 11:57

    Adding this to your CSS will fix your problem:

    .ngViewport{
        height:auto !important;
    }
    .ngCanvas, .ngViewport, .ngRow, .ngFooterPanel, .ngTopPanel   {
       width: 100% !important;
    }
    .ngRow {
       border-bottom:none !important;
    }
    

提交回复
热议问题