Hi
We recently upgraded infragistics control library in to version 12.1 In one of our web applications, . We faced lot of issues and conflicts while doing that since there are major architectural changes. With lots of hard work, we could sort out most of the issues we had.
However we are currently facing a new problem with Web HTML Editor control. If you type more than one space and get the TextHTML of the control (from the code behind), there are "ᙦ" for the additional spaces. (if you type two spaces there will be one "ᙦ" sign). this happens in All the browsers.
I'm wondering whether this is a bug in the new control. I tried this with a sample application too and the result was same. Has anybody else have came across similar problem? Is there a workaround for this?
Any help is very much appreciated,
Wijitha
Hi Wijitha,
Thank you for a report.
That case was missed while internal testing and it was not reported. It has been fixed and update will be available within service releases.
For now you may fix that by following:
string xhtml = this.WebHtmlEditor1.TextXhtml.Replace("ᙦ", " ");
Hi Viktor,
Thanks for your solution. It exactly solved the problem. But looking forward for a proper fix in the service releases.
I have one more problem that needed your attention. When we copy-paste content (that has multiple paragraphs) from MS word documents to the webHTMLEditor, "TexttHTML" property returns only the first paragraph of the content. So we cant save the whole content, just the first paragraph. This happens only in IE. This issues is not there in the other browsers (Chrome, FF, Safari).
Thanks,