Questions tagged [richtextediting]

This kind of editing is usually related to an online rich-text editor is the interface for editing rich text within web browsers, which presents the user with a "what-you-see-is-what-you-get" (WYSIWYG) editing area.

43 questions
13
votes
1 answer

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.
Gary
  • 1,001
  • 8
  • 17
11
votes
6 answers

32x32 icons for rich text editor?

Does anybody know a open source/free, 32x32 or bigger, complete set of "office" icons for integration in a Rich Text editor - i.e. buttons like Copy Paste Text color Background color Bold / Italic / Underline ?
Pekka
  • 442,112
  • 142
  • 972
  • 1,088
8
votes
3 answers

C# WPF Text with links

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…
Len
  • 2,093
  • 4
  • 34
  • 51
8
votes
7 answers

Removing resize handlers on contentEditable div

I created a contentEditable div to use as a rich textarea. It has resize handlers around it that I'd like to get rid of. Any idea how I'd do this? Edit: This appears to be happening because I am absolutely positioning the div, so Firefox adds an…
Ben McCann
  • 18,548
  • 25
  • 83
  • 101
7
votes
6 answers

contentEditable cursor position/style in FireFox

I'm having trouble using contentEditable in FireFox 3. I have a problem where the cursor will appear above or only partially in the div after I click in it (until I start typing at which time it behaves correctly). Any ideas on how I can stop this…
Ben McCann
  • 18,548
  • 25
  • 83
  • 101
5
votes
3 answers

FCKeditor vs TinyMCE and XHTML Compliance

I'm after (short) opinions on FCKeditor vs TinyMCE and whether either or both are XHTML compliant. In the interest of keeping with the spirit of stackoverflow, if someone has already made your point, just upvote them.
Darren Oster
  • 9,146
  • 10
  • 48
  • 66
4
votes
1 answer

TinyMCE: Customize style-names in styleselect-menu

Let's say I have a CSS class named foo but would like it to be shown as foo (1) in the TinyMCE styleselect-menu (one of the default buttons available in the advanced theme). I tried using the class_filter option to do this, but that doesn't seem to…
Javier
  • 2,491
  • 4
  • 36
  • 57
4
votes
2 answers

Rich Text Editor[WYSIWYG] with paging using javascript

Is it possible to implement paging similar to MS Word in a rich text editor using JavaScript. I need to implement an editor using JavaScript that contains text in pages. If i type text that exceeds the ficed limit of a page then automatically a new…
rahul
  • 184,426
  • 49
  • 232
  • 263
4
votes
1 answer

YUI Editor:

instead
on linebreak?

How do I tell the YUI-Editor to enclose all text into

and use

instead of
if the user issues a linebreak? Here comes an example to illustrate what I'm trying to do: Instead of this: The quick brown fox
jumps over the lazy…
Javier
  • 2,491
  • 4
  • 36
  • 57
4
votes
1 answer

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.
text
I have tried do that using inline styling like in example above, also…
4
votes
5 answers

What WYSIWYG editing component should I use for in-browser editing?

I'm looking for a good, WYSIWYG editor that I can integrate into my web pages enabling my users to edit letters, legal agreements, etc. without requiring them to learn a new set of commands or syntax or going crazy trying to remove a table or resize…
Artilheiro
  • 4,005
  • 10
  • 36
  • 34
3
votes
1 answer

TinyMCE: Using CSS class attributes with the formatselect-dropdown formats

I would like to customize the formats in the TinyMCE formatselect dropdown to support css class attributes. Example: If would like to be able to select

instead of just

as format in the formatselect dropdown. Does anyone here…

Javier
  • 2,491
  • 4
  • 36
  • 57
3
votes
1 answer

Explanation of "hardcoded" font on a piece of text, and how to remove it via CSS etc

I'm unable to understand how a piece of text has some kind of hardcoded font in it, that cannot be removed even after pasting into an RTE, application of CSS etc. See 2 examples below copied from various places: Sample 1 - this font is apparently…
zehawk
  • 210
  • 1
  • 10
3
votes
6 answers

Rich edit in place

What is the best solution for something that support: rich editor edit in place placeholder save HTML and strip out malicious etc. I would like to have a nice and usable interface to change data on a profile. It must support bold, italic and…
Chris Cinelli
  • 4,679
  • 4
  • 28
  • 40
3
votes
3 answers

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…
Adam Halasz
  • 57,421
  • 66
  • 149
  • 213
1
2 3