This code will allow a specific field to be editable in the new row in a Janus grid, but in the regular row it will not be editable. We do this by cancelling the edit in the 'EditingCell' event
Private Sub GridEX1_EditingCell(ByVal sender As Object, ByVal e As Janus.Windows.GridEX.EditingCellEventArgs) Handles GridEX1.EditingCell
Dim gridrow As Janus.Windows.GridEX.GridEXRow = Me.GridEX1.GetRow
Dim strKey As String = e.Column.Key
If gridrow.RowType = Janus.Windows.GridEX.RowType.Record And strKey = "itemnmbr" Then
e.Cancel = True
End If
End Sub