Hello
I need to change null value to 0 before leaving the edited cell in grid.
Please tell me, how can I do it?
I've tried to ask this question here http://news.infragistics.com/forums/t/7082.aspx?PageIndex=2
But as I understand now you don't answere in branches, which have answered status.
Another option would be to use BeforeExitEditMode and if the Text property is an empty string, set it to "0".
Use BeforeCellDeactivate event. Check if e.Cell.Value is null. If so, set e.Cell.Value = 0.