A grid with Navigable=true allows me to
- start editing a newly added record right away, no Command Buttons needed, just some fiddling with grid State
- stop editing by pressing Escape
However, when using Escape no event is fired. Which is fine when I am editing an existing record, because any modifications are just discarded. But when the user is escaping out of a newly added row, I want to dispose of that row and underlying item immediately.
Without an event to detect the cancel I don't now how to do that.
Any suggestions?