Hi
Recently I upgraded from version 12.1 to version 13.1. I have found issues in the 13.1 version XamTextEditor Control.
The text box control is null when you hit enter key or change focus by hitting tab or clicking out.
In the xaml I have written something like
<igEditors:XamTextEditor x:Name="txtTransactionName"
Value="{Binding Path=TransactionName, ValidatesOnDataErrors=True, UpdateSourceTrigger=PropertyChanged, Mode=TwoWay}"
Validation.ErrorTemplate="{x:Null}"> </igEditors:XamTextEditor>
and I have the TransactionName property created as follows
public string TransactionName { get { return this.TransactionName; } set { if (value != this.TransactionName) { this.Instance.TransactionName = value; this.OnPropertyChanged("TransactionName"); } } }
I noticed that when I exit the field the setter is called again with value null which clears out whatever you typed in the box and validation fails.
This was never a problem before.
Looking forward to hear from you.
Thank you.
Hello Tamalika,
Thank you for your post. I have been looking into it and I created a sample project for you following your scenario and everything seems to work ok on my side. If the sample doesn’t satisfies all your needs feel free to modify it, so it reproduces your behavior and send it back to me for further investigation.
Looking forward for your reply.
Not able to find the sample project you told about. Can you please share it.
Hi Tamalika,
What's the resolution for this issue? We recently upgraded to 15.1 from 11.2 version and I'm facing the exact same issue with XamTextEditor. Please let us know what's done to fix this issue at the earliest.
Thanks,
Eker.
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.
Hi Stefan,
Sorry for delayed response, got busy with something.
We found the that the problem lies with one of the style for the texteditors.
Tamalika
I am just checking if you got this worked out or you still require any assistance or clarification on the matter.
I apologize I didn't upload the sample. You can find it attached to this post.