NA
Nisha Arockiya A
Syncfusion Team
July 29, 2008 07:39 AM UTC
Hi Brian,
In the event where you are checking, whether the Enter key is pressed or not,add down arrow key press check condition also., like
if (e.KeyCode == Keys.Enter || e.KeyCode == Keys.Down)
in the gridControl1_KeyDown event.
Regards,
Nisha
>So we're using a virtual grid that we bind to a data table. To allow users to add new rows to the end we add an empty row to the end of the grid. When they enter data in that row we add a new row and set the cell value in the data table and then a new blank row appears at the end.
If a user edits the a cell int he last row and presses Enter the edit completes, the new row appears and the current cell moves down a row. However if they edit and use the Down Arrow it just stays on the current cell and doesn't move. How can I program around this?
Thanks