Hello,
We have found an issue in Navigation thru Enter key. We have set following properties
.EnterKeyMode = EnterMoveToNextCelll
NewRowEnterKeyMode = EnterMoveToNextCelll
It works fine until movement from any column have textbox to combobox... If enter is press on textbox column, having next column is combo box, it jump to third column and skip combobox column.
We tried different things and finally write following code to close the Editor.
public
override
bool
ProcessKeyDown(KeyEventArgs keys)
{
if
(keys.KeyCode == Keys.Down || keys.KeyCode == Keys.Enter)
{
GridControl.CloseEditor();
return base
.ProcessKeyDown(keys);
}
return
base
.ProcessKeyDown(keys);
}
Please confirm if this is an issue with latest build.
Thanks,
devoas.