I have a textbox and a grid displaying 10 lines of item.
First, I modified data in grid.
Then while editing the second line of data, I found clicking out of the grid will not set the focus out from the grid.
Why and How can I set the grid out from edit mode when I click out of the grid?
Please advice, Thanks.
private void Form1_MouseClick(object sender, MouseEventArgs e)
{
ultraGrid1.PerformAction(UltraGridAction.ExitEditMode);
}
If the forms have many other controls, is it I had to add this mouse click event to all other controls in order to force ultragrid to trigger the ExitEditMode event?