richtextediting

Rich text edit control for C++?

Hi, I'm looking for a control to edit rich text. These are my requirements: Fast/lightweight Support for bulleted/numbered lists Colored text and highlighting targeting Windows, but cross-platform would be a bonus Fine control over undo/redo and easy way to monitor what parts of the documents have changed All the other usual feature...

How to enter break in Sitecore RichText editor?

When I hit enter on a line in sitecore richtexteditor I get a new paragraph instead of line break. I can manually add it by editing html but how can I add line break in the Design mode itself? ...

HTML / JAVASCRIPT : Disable HTML CONTENT in contentEditable=true

What I want? I want a div what works like a textarea, I don't want to have the ability to edit things in the div, and paste images and so on just plain text. Example www.facebook.com - The best example is facebook's news feed. Why I need this way? If you check out facebook's news feed, you well see that the area where you can...

Google Docs use normal divs on Chrome and iframe on Firefox for presentation.Can you explain why?

This is especially important for text editing. Using iframes for text editing (lets say you will develop a rich text editor) looks like a common and reliable technique. Text editing in Google Docs presentation differs from Chrome to Firefox. They use iframes in Firefox which seems better but in Chrome they do this by putting manually def...

C# WPF Text with links

Hi all, I just found myself a new challenge: Make a Word Processor that is in handling more like the web than plain text. Designing a nice framework for this is what i cant wait to start with, but i do need to know what the possibilities are at the GUI side (it will probably have loads of GUI challenges). So the basic thing that I need...

Rich Text Editing - designMode vs contentEditable

When creating a cross-browser rich text editor. Which would you use and why? Keep in mind that pasting has to be resilient to stand against multiple sources (notepad, word, other websites) and it should not be dependent on any Javascript libraries. ...

rich text editing, prevent embeded javascript code

I made a website using the famous symfony framework. I wanted to add rich editing feature to it. And I found TinyMCE editor. But there comed a problem: how about the user embed some javascript code into the content? such as alert('hello world'). I tested wordpress, which is a very famous blog software. It faces the same problem. example...

How to change cursor style on element with 'contenteditable' attribute in IE?

I am trying to change style of cursor on element that has 'contenteditable' attribute set to true in IE. <div contenteditable="true" style="cursor:pointer;"> text </div> I have tried do that using inline styling like in example above, also with css file and by javascript but with no luck. All my solutions work in FF without ...