the folowing is my drag and drop code behind but the problem is that every row drags and drops and works except for the last row in the grid. Is there something I need to change or do differnetly to get the last row to drag and drop.
Protected Sub myGridPErsonnel_RowDrop(ByVal sender As Object, ByVal e As Telerik.Web.UI.GridDragDropEventArgs) Handles myGridPErsonnel.RowDrop
If e.DestDataItem.OwnerTableView.ClientID = myGridPositions.MasterTableView.ClientID Then
For i As Integer = 0 To e.DraggedItems.Count - 1
Dim SSN As String = e.DraggedItems(i).GetDataKeyValue("SSN")
Dim PositionId As Integer = e.DestDataItem.GetDataKeyValue("intPositionId")
HFSSN.Value = SSN
HFPosition.Value = PositionId
FillInfo(SSN, PositionId)
pnlPersonnelInfo_POP.Show()
Next
End If
End Sub