I have a Hierarchical gridview and I need implement the following functionality in the child gridview:
- Show all the rows in editable mode (this can be done)
- Save all data of each row on it's lost focus
We can capture the mouse events but how do we track the row lost focus triggered by the Keyboard. Ex: when a row is in focus, hitting f6 will go directly to browser address bar which results in the row lost focus event.
One mouse move across the rows will trigger all the validation and save logic for all the rows, this screen has hierarchical control and the child gridview has a minimum of 200 rows.
Any thoughts on how to implement this?