tab left after data entry

Upon entering data into a cell of type "TextBox" and hitting enter, the active cell tabs to the left. How do I change this behavior so that the active cell remains at the current location ?

2 Replies

AD Administrator Syncfusion Team October 9, 2002 12:38 PM UTC

There is an EnterKeyBehavior property that controls how the enter key behaves. So, try setting this property. It is a member of GridControl or GridDataBoundGrid.Model.Options. MeGridControl1.EnterKeyBehavior = GridDirectionType.None Me.GridDataBoundGrid1.Model.Options.EnterKeyBehavior = GridDirectionType.None


RB robert bergelson October 9, 2002 01:21 PM UTC

Thanks Clay - That worked great !

Loader.
Up arrow icon