Home - Forums-.NET - FlyGrid.Net (Windows Forms) - Need to keep cell focus when user tries to leave cell

FlyGrid.Net (Windows Forms)

.NET Datagrid - Fast, highly customizable, industry standards .NET data grid control for WinForms

This forum related to following products: FlyGrid.Net

Need to keep cell focus when user tries to leave cell
Link Posted: 17-Oct-2006 03:26
Hi,

Let's say the user types something into a cell and tries to tab away.  I need to in effect 'cancel' the tab, and keep the current cell in edit mode.

How can this be done?
Link Posted: 17-Oct-2006 04:29
You can use for these purposes FlyGrid.NodeCellFocusChanging event handler.
Link Posted: 17-Oct-2006 04:32
The problem is, at this point I am in the SetValue of the column, where I do the validation for the cell (as per 9 Rays recommendations).  So in here, I at some point decide that I do not want the user to leave the cell.

And I need to from here, be able to tell the cell to stay in edit mode and not go onto the next cell.

Part of the problem is, that some things are at the column level, some things are at the grid level, and it is very difficult to control things just the right way because the code is split in so many different places...