I've setup a radgrid to open in edit mode but also want the focus to be on a specific text box "Allowed" on the first row of the radgrid.The following code sets the radgrid to edit, but i have been unsuccessful in getting any of the focus routines to work correctly.
Private Sub RadGrid1_PreRender(ByVal sender As Object, ByVal e As System.EventArgs) Handles RadGrid1.PreRender
If Not IsPostBack Then
For Each item As GridItem In RadGrid1.MasterTableView.Items
If TypeOf item Is GridEditableItem Then
Dim editableItem As GridEditableItem = CType(item, GridDataItem)
editableItem.Edit =
True
End If
Next
RadGrid1.Rebind()
End If
End Sub
Any suggestions would be appreciated.