I need to find a control that's contained in a Template column when I get into a RowDrop event. The control is in the DraggedItem object, and is always null. Any suggestions?
Thanks,
Alex
Dim index As Integer = CInt(e.DraggedItems(0).ItemIndex) Dim oList As DropDownList = CType(RadGrid1.Items(index).FindControl("oList"), DropDownList) Dim s As String = oList.SelectedValue
Thanks,
Alex