Hello,
I am knee deep converting our business app over to Telerik (which is an awesome suite of tools I wish I would have gotten it sooner!) and am running into an issue with the RadListView in detail view. I really need the ItemMouseHover event to work so I can show a custom form while the mouse is over the item but for some reason it's not firing. I have tested the ItemMouseEnter and ItemMouseLeave events and they fire correctly. Is there something I am missing to enable this event?
My test code is really simple:
Private Sub lvBusinessApps_ItemMouseHover(sender As Object, e As ListViewItemEventArgs) Handles lvBusinessApps.ItemMouseHover
Debug.Print("Hover")
End Sub
Thank you