I have a number of RadToolTips within 2 RadListViews on a page.
When I drag one element from one RadListView to the other RadListView the RadToolTips keep showing up on mouse hover (as expected on hover).
How can I in JavaScript disable all the RadToolTips on the page when OnItemDragStarted client event for RadListView. Thus stopping the RadToolTips from showing up upon hover only when I’m dragging an element from one RadListView to another.
Any help would be greatly appreciated.
If you’ve got a RadToolTip on your page, and a couple of list views you could try using a global js variable, and the onDrag and onDrop settings to toggle that variable. Your RadToolTip could use that variable on the beforeShow to decide if it should show a tool tip or not.. wrote up a small sample for you (not complete)