Currently, I am utilizing the Vue version of ag-grid 21.2.1 (https://www.ag-grid.com/vue-getting-started/) and successfully integrated Row Dragging (https://www.ag-grid.com/javascript-grid-row-dragging/) feature on one of our tables. Everything is functioning well, but I am now aiming to enhance the user experience by making the entire row act as a "grip" for dragging purposes.
I attempted to utilize pointer-events: none
on .ag-row
and enlarging the native ag grip item to be more clickable, but unfortunately, this approach did not yield the desired results:
.ag-icon-grip {
position: absolute;
width: 600px;
pointer-events: auto;
}
Has anyone successfully tackled this challenge before?