I am using the Grid ViewStyle so have a bool column that shows checkboxes. I need to catch an event when the check box value changes. I'm currently using this line but I'm getting erratic behavior and don't think its correct:
((Infragistics.Win.CheckEditor)node.Cells[key_of_check_column].EditorResolved).ValueChanged += new EventHandler(Alternate_ValueChanged);
Its funny how I figure these things out as soon as I post. I guess I was going about this the wrong way and needed to catch the CellValueChanged event at the tree level.