I have a page with multiple RadGrid controls. One control drags to another control. While the dragDrop operation is still in process, the user drags another item, and the item being dragged is left on screen without dropping into any container. The item remains frozen above all controls, and doesn't go away until the page is refreshed. I added an OnRowDropping event client-side to catch when eventArgs.get_targetItemID() was blank, and used eventArgs.set_cancel(true). That stopped the instance where users were dropping a control on the page (outside a control) while dragging. I'd like to disable DragDrop while a DragDrop operation is in progress to avoid this. I looked through the Telerik documentation for the RadGrid object model, and I couldn't find anything client side that would allow me to detect whether or not the grid was currently dragging.
Does anyone know how to catch this? Then, when I determine that the user is already dragging, The OnRowDropping event will set_cancel(true) for that event.
Please help me with this if you can.
Does anyone know how to catch this? Then, when I determine that the user is already dragging, The OnRowDropping event will set_cancel(true) for that event.
Please help me with this if you can.