Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
60
Determining mouse position over record for drag drop
posted

I'm trying to update a record based on a drag drop, so far the closest thing i've been able to find to determing which record is to be update is by looping through all the records and trying to determin is the records/cards isMouseover is actiave.  However both methods i've tried the ismouseover is always false.  Is that a bug?  Is there another way to determine what card an item was dropped on?

Dim item As Infragistics.Windows.DataPresenter.DataRecordPresenter

 

item = Infragistics.Windows.DataPresenter.RecordPresenter.FromRecord(dvProjectWbs.Records(i))

 

item.IsMouseOver

or

dvProjectWbs.Records(1).DataPresenter.IsMouseOver

Parents
No Data
Reply
  • 69686
    posted

    No, this is not a bug. These properties are disabled when there is an active drag-drop operation. You can take a look at this approach here where this is taken care of.

Children