Hi Team,
Currently in our project (angular + .net api) we are using Rapid spell check and we notice after correcting the spelling using spellcheck the model is not getting updated. To test it out we download the referenced demo as mentioned in your KB article and faced same issue.
Downloaded the Angular demo code as mentioned in the KB article.
https://keyoti.com/downl...ellWeb-Angular-2022.zip
I have added the following lines to make two way binding in the home component
home.component.ts(add the following line)
public textareatext : string='';
home.component.html (add the two way binding and interplotation)
<textarea id="spellchecked' [(ngModel)]="textareatext"></textarea>
{{textareatext }}
After doing the spellcheck correction the value is not getting updated in the model. you will notice the string interpolation {{textarea}} is not updated after correcting the spelling.
Could you please check and lets us know a correct way to capture the change event.
Regards,
Vijay Kumar