Hi,
We recently upgraded infragistics control library in to version 12.1 in one of our web applications. We are currently having a new problem with Web HTML Editor Control. When you copy some text from a MS word document directly to the Web HTML Editor Control and save it (TextPlain property has been used), then it misses some spaces between words randomly (when text is copied from notepad, this issue not happens). This happens in all the browsers.
I'm wondering whether it is a bug in the new control. Has anybody else have come across similar issue?
Any help is very much appreciated.
bump
Hello Ni K,
Thank you for posting in our forum.
Can you share more details? How are you saving the text? I could not reproduce the issue with v12.1.20121.1005.
If you still need assistance with the matter, please let me know.
Hello,
Did this help to resolve the issue? And do you have missing spaces in the editor, or in the database after you save the text?
In OnClientClick on the save button we do as follows.
var editor = iged_getById('<%=RichTB.IgHTMLEditor.ClientID%>'); editor.setText(editor._cleanWord(editor.getText()));
Then in Onclick event of the save button we just get the text from TextPlain property of WebHtmlEditor and save it in the database.
To fix the garbage character issue we got previously (previously posted in this forum), we have used the following code as well.
WebHtmlEditor.TextXhtml.Replace("ᙦ", " ");