在水平滚动时,ag-grid标题会朝相反的方向移动

时间:2018-12-25 11:03:36

标签: angular5 ag-grid right-to-left

我正在使用带有角度5应用程序的ag-grid。 该应用程序是rtl-从右到左。 在某些网格中,我有一个水平(从右到左)滚动。 我刚刚注意到,当我向左滚动时-网格内容向右移动(确定) 但是页眉朝相反的方向移动。

我在网格上启用了RTL:

<ag-grid-angular #agGrid
                       style="width: 100%; height:100%"
                       id="myGrid"
                       class="ag-theme-balham"
                       [enableRtl]="true"
                       [enableFilter]="true"
                       [enableSorting]="true"
                       [columnDefs]="columnDefs"
                       [suppressDragLeaveHidesColumns]="true"
                       [enableCellChangeFlash]="true"
                       [enableColResize]="true"
                       [getContextMenuItems]="getContextMenuItems"
                       [defaultExportParams]="defaultExportParams"
                       [localeText]="localeText"
                       (gridReady)="onGridReady($event)">
      </ag-grid-angular>

我已经注意到,当我使用 [enableRtl] =“ true” 时, 我没有看到这个问题,但是网格变成了LTR(我真的必须使用RTL)。

感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

我在ag-grid 20.2.0和chrome 6中遇到了这个问题。 只需添加:
.ag-root{border:none !important;}