我正在使用带有角度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)。
感谢您的帮助!
答案 0 :(得分:0)
.ag-root{border:none !important;}