This is a migrated thread and some comments may be shown as answers.

Entery Key Issue in 2010.2 10.914

1 Answer 62 Views
GridView
This is a migrated thread and some comments may be shown as answers.
devoas
Top achievements
Rank 1
devoas asked on 01 Oct 2010, 01:51 PM

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.

1 Answer, 1 is accepted

Sort by
0
Martin Vasilev
Telerik team
answered on 06 Oct 2010, 02:02 PM
Hi devoas,

Thank you for writing.

I managed to reproduce the described issue. We will address it in the next major release. I have updated your Telerik points. Let me know if you have any other questions.

Regards,
Martin Vasilev
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
GridView
Asked by
devoas
Top achievements
Rank 1
Answers by
Martin Vasilev
Telerik team
Share this question
or