When I drag and drop a selected row from ASP.NET Ajax (Telerik.web.ui) Radgrid (inside a usercontrol) to a RadTreeview node (inside a usercontrol),
I am able to capture the Datakeyitem of the Radgrid on the RowDrop serverside event of the Radgrid, like
Private Sub grdEquipments_RowDrop(ByVal sender As Object, ByVal e As Telerik.Web.UI.GridDragDropEventArgs) Handles grdEquipments.RowDrop
Dim dataItem As GridDataItem = e.DraggedItems(0)
Dim s As String = dataItem.OwnerTableView().Items(dataItem.ItemIndex).GetDataKeyValue("ID")
End Sub
But I am not able to get the refrence to the Treeview Node on which the Item is being dropped.
Do you have any sample projects where you have this functinality.
please note that these two controls are in separate usercontrols.
Thanks
Madhu Rao