Home - Forums-.NET - FlyGrid.Net (Windows Forms) - Change cell value after NodeCellChange...

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

Change cell value after NodeCellChange...
Link Posted: 30-Dec-2005 06:46
What I have is 3 columns 1 text column and 2 dropdown columns. What I want to do is depending on the values that are selected in the dropdown columns, conbine these values and populate the text cell with the combined text string.

I have managed to get the values out from each of the 2 dropdown columns using the NodeCellChange event, however when I then change the text cell it obviously launches the NodeCellChange event again causing a loop. Is there another way to acheive this???

If I could somehow disable the NodeCellChange event for this specific column???

I hope I explained that OK.

Thanks

Simon
Link Posted: 17-Jan-2006 07:19
???
Link Posted: 18-Jan-2006 08:06
You can use internal flag that is specifies internal changes in this case you can avoid loops:
[c#]
private bool internalChanges = false;

public void OnNodeCellChange(NodeBase node, int index, object value)
{
  if (internalChanges) return;//do not handle this event if we in internalChanges state
  internalChanges = true;//enter into [internal changes]
  try
  {
     node["SomeField"] = false
  }
  finally
  {
    internalChanges = false;//exit from [internal changes]
  }
}