I have an Infragistics.Win.UltraWinGrid.UltraGrid where I've handled the DragOver event. I'd like to be able to click a row in the grid and drag it, but for some reason, it takes two single clicks before I can drag it. It seems like it needs one click to "select" it (even though the row turns blue on the first click) and then another to actually grab it for dragging.
Is there a workaround for this?
Hello Rory,
Thank you for contacting Infragistics.
You can get the behavior you're looking for by setting UltraGrid.DisplayLayout.Override.SelectTypeRow to SelectType.ExtendedAutoDrag or SelectType.SingleAutoDrag.
Please see the link below for more information about the different selection types.
http://help.infragistics.com/doc/WinForms/2014.1/CLR4.0/?page=Infragistics4.Win.UltraWinGrid.v14.1~Infragistics.Win.UltraWinGrid.SelectType.html
Please let me know if you have any other questions about this.
Perfect, thanks!