We're using angular, and set the data of ckeditor with ngModel - when we render we set the data
editor.setData(ngModel.$viewValue);
We try to keep the cursor selection with ranges and bookmarks
but it always get to the start even if ther are no dom changes
I've tried many solutions such as
http://stackoverflow.com/questions/5742599/ckeditor-set-cursor-caret-positon
http://stackoverflow.com/questions/16835365/set-cursor-to-specific-position-in-ckeditor
Couldn't make it work... :(
Can anyone help please?