Hi Klaas,
Thank you for contacting Syncfusion support.
In EditControl if we assign the text using “EditControl.Text” property which can override the default text contained in EditControl. Due to this EditControl mark the text as Modified. We suggest you to use EditControl.BeginInit() and EditControl.EndInit() methods to resolve the reported query. Please refer the below code snippet.
|
this.editControl1.BeginInit();
this.editControl1.Text = "Your Code";
this.editControl1.EndInit();
|
We have prepared sample for your reference and it can be downloaded from below location.
Please let us know if you require further assistance.
Regards,
Senthil