Hello
I need a drag Drop from gridview to listview.
I have followed the code from the documentation and everything works finew up to the drop on the ListView where I fail to identify the row of the listview into which the drops occurs.
I have the following code (copied from Telerik's documentaiton)
targetCell.Text = srcRow.RowInfo.Cells("Name").Value
Dim targetElement As DetailListViewElement = TryCast(e.HitTarget, DetailListViewElement)
Dim targetVisualItem As BaseListViewVisualItem = targetCell.RowElement
Dim insertIndex As Integer = targetCell.Row.ListView.Items.IndexOf(targetVisualItem.Data)
and I get an error on .row and .rowelement which are "not members ..."
Am I missing a reference or is it a change of the components ?
I need to get the row of the listview when I perform the drom on the cell
Thanks in advance for any advice
Best Regards
Pierre-Jean