我的ag-grid数组有问题,我有这个数组:
<div style="width: 100%;">
<ag-grid-angular #agGrid style="width: 100%; height: 200px;" class="ag-fresh"
[gridOptions]="gridOptions"
[rowData]="rowData"
[columnDefs]="columnDefs"
enableColResize
rowSelection="multiple"
(columnResized)="onColumnEvent($event)"
(columnPinnedCountChanged)="onColumnEvent($event)">
</ag-grid-angular>
</div>
我有两个按钮:
<div class="bouton" placement="top" ngbTooltip="Déplacer instruction vers le haut">
<button (click)="moveUp()">
<img src="/src/images/flechehaut.png" style="width:60px;height:60px;" />
</button>
</div>
<div class="bouton" placement="top" ngbTooltip="Déplacer instruction vers le bas">
<button (click)="moveDown()">
<img src="/src/images/flechebas.png" style="width:60px;height:60px;" />
</button>
</div>
我想知道是否可以使用向上移动按钮向上移动整行,并使用向下移动按钮向下移动一行。 我看了ag-grid documentation,但没有发现这种可能性。
至少可能吗?如果是的话,我应该如何看待这个问题?
答案 0 :(得分:0)
是的,我可以想到两种可能性:
moveUp
和moveDown
功能将毫无用处moveUp
/ moveDown
函数只会将此数字更新为或更少,然后根据这些新数据求助于网格值。