Hey guys. So I got a data grid that I enabled drag and drop to easily allow users to position the items. And that works. However the previous functionality I had was that when you click on a row a pop-up happens that let's you edit the details. The problem now is that when you drag a row, the pop-up happens and it also does the dragging and dropping.
The first thing that comes to mind is to make a cell renderer that acts like an edit button, so you have to click on aspecific column which has a button in it to edit an item.
But... what I'm wondering is if it's possible to only do the popup ( as a result of this: change="editQuestion(event.target.selectedItem)"), if no drag occured. Like a dragIncomplete=... kinda thing. I dunno. :)
Thx!

