i want to enter edit mode for a failed validation. I don't understand why I can't get the grid to enter edit mode. The validation is lighting up correctly and the cell has focus (dotted selection). But edit mode is failing to start.
Hello,
It has been a while since you have made your post, in case you still need support I will be glad to assist you further. I suppose the other community members can benefit from this answer as well. I have been looking through your post and I suggest you add the following code in the EditModeEnded event of the XamDataGrid:
if (e.Cell.HasDataError) { Dispatcher.BeginInvoke(new Action(() => { e.Editor.StartEditMode(); }), DispatcherPriority.Background, null); }
Feel free to write me if you have further questions.