From 9cf714f99ec25ac880da8b9662a16e0de55e619c Mon Sep 17 00:00:00 2001 From: ghiscoding Date: Thu, 28 Oct 2021 12:39:45 -0400 Subject: [PATCH] feat(plugin): add row move shadow item while moving/dragging row --- src/app/examples/grid-rowmove.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/examples/grid-rowmove.component.ts b/src/app/examples/grid-rowmove.component.ts index 164cdf01c..41d1f84fc 100644 --- a/src/app/examples/grid-rowmove.component.ts +++ b/src/app/examples/grid-rowmove.component.ts @@ -91,6 +91,7 @@ export class GridRowMoveComponent implements OnInit { singleRowMove: true, disableRowSelection: true, cancelEditOnDrag: true, + hideRowMoveShadow: false, width: 30, onBeforeMoveRows: this.onBeforeMoveRow.bind(this), onMoveRows: this.onMoveRows.bind(this),