I have seen few threads discussing about cursor but none of them are including all these 3 issues. So opening a new thread.
we are using Telerik 2014.2.724.45. I know there are latest versions available. Since our application is already has gone live, we cannot upgrade the version now. So please suggest any hotfix available.
We are facing cursor issue in multiple scenarios.
1) when some special characters are copy pasted, like ' ' , '\r' or 'char(10)', on editing or deleting cursor moves to some different position.
we have provided the fix which is mentioned below but still users has reopened this issue. so can you please suggest anything else has to be taken care?
we have added OnClientPasteHtml="RemoveHtmlContents"
function RemoveHtmlContents(editor, args) {
var pasteText = args.get_value();
if (pasteText.indexOf(" ") > -1) {
pasteText = pasteText.replace(/ /g, '');
}
if (pasteText.indexOf("&") > -1) {
pasteText = pasteText.replace(/&/g, '&');
}
pasteText = pasteText.replace(/\r\n|\n|\r/g, ' ');
args.set_value(pasteText);
}
2) When track changes are enabled and on pressing enter some time cursor moves back to previous line but on typing it will come to next line
I have found this issue for different version here - http://feedback.telerik.com/project/108/Feedback/Details/134999-incorrect-behavior-when-pressing-enter-with-enabled-track-changes will this fix this issue?
3) When started editing after enabling track changes. In between if I come back and edit at position a it goes back position b, (a & b are shown in the image attached.