Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub DataGrid_Edit(Sender As Object, E As DataGridCommandEventArgs)
If Not isEditing Then
DataGrid1.EditItemIndex = e.Item.ItemIndex
BindGrid()
[b]DataGrid1.Items(DataGrid1.EditItemIndex).Cells(3).enabled = false[/b]
End If
End Sub