Search

You searched for the word(s):
< 1 second(s)
  • Re: content of textarea changed due to autoformatting

    He is saying that CuteEditor is automatically adding tabs, which affects the content inside the text box. If you look closely at the content in the textbox, B and C are tabbed in; this is a result of CuteEditor autoformatting. &nbsp; How can we turn off auto-formatting? The DisableAutoFormatting is now obsolete apparently.
    Posted to Cute Editor for .NET (Forum) by jeffhagen on October 22, 2007
  • Re: HTML is changed after it is pasted in cute soft editor

    Yah, CuteEditor likes to convert tabs to &amp;#160; (non breaking spaces). The simple fix is to replace tabs with spaces BEFORE sending the html to CuteEditor.
    Posted to Cute Editor for .NET (Forum) by jeffhagen on March 30, 2005
  • Re: CuteEditor Display issue: very Urgent

    Cute editor has an interesting tendency to replace tabs with &amp;#160; (which is the character entitie equivalent of the non-breaking space (&amp;nbsp;)). This will severely jack up the representation of your html code if you use tabs in the templates. The fix is to do a simple String.Replace(''\t'', ''&#160;&#160;&#160; '') to replace the tabs ...
    Posted to Cute Editor for .NET (Forum) by jeffhagen on March 30, 2005
  • Re: retain html formatting

    I also would like to turn the formatting off. The problem is that if I have a table with images in it like:&#160;...&lt;td&gt;&lt;img src=''..''&gt;&lt;/td&gt;...&#160;The editor turns it into &#160;...&lt;td&gt;&lt;img src=''...''&gt;&lt;/td&gt;...&#160;The preview mode then shows breaks in the images because of the extra space. How do I turn the ...
    Posted to Cute Editor for .NET (Forum) by jeffhagen on March 27, 2005
  • Re: ampersand

    Use this: string text&#160;= Regex.Replace(Editor.Text, @''(?&lt;=href\s*=\s*(?&lt;1&gt;'|'''')\S+)&amp;amp;(?=\S*\1)'', ''&amp;'', RegexOptions.IgnoreCase);
    Posted to Cute Editor for .NET (Forum) by jeffhagen on March 27, 2005