Hi,
When I click on XamDataGrid cell, it switches to edit mode and highlights content of the cell. Is it possible to move cursor to the end of the text in a cell without highlighting it ?
Thanks,
Ed
Hello Ed,
Thank you for your feedback. I am glad that you resolved your issue and I believe that other community members may benefit from this as well.
Thanks again.
Stefan,
It works, thank you very much!
Thank you for your post. I have been looking into it and I can suggest you handle the XamDataGrid’s EditModeStarted event and add the following code in its handler:
TextBox tb = Utilities.GetDescendantFromType(sender as DependencyObject, typeof(TextBox), true) as TextBox; tb.SelectionStart = tb.SelectedText.Length;
In order to achieve the functionality you want. Please let me know if this helps you or you need further assistance on this matter.
Looking forward for your reply.