Questions tagged [rte]

RTE refers to a Rich Text Editor, which is an interface for editing rich text within web browsers, which presents the user with a "what-you-see-is-what-you-get" (WYSIWYG) editing area.

RTE refers to a Rich Text Editor, which is an interface for editing rich text within web browsers, which presents the user with a "what-you-see-is-what-you-get" (WYSIWYG) editing area. The aim is to reduce the effort for users trying to express their formatting directly as valid HTML markup.

The most popular editors used for creating the rich text component of web pages have the following specifics:

  • The editing view matches the final appearance of published content with respect to fonts, headings, layout, lists, tables, images and structure
  • The buttons, controls and key strokes deliver the same behaviour as the word processor or text editor that the user is most familiar with.
  • The HTML code that is generated is compliant with web standards (such as W3C) and the browser on which the content will be viewed.
313 questions
4
votes
1 answer

Prevent empty lines collapsing in IE on contenteditable=false

I have a div with contenteditable=true set in order to allow inline editing (for RTE purposes). Im aware different browsers handle the enter keypress differently, FF inserts
and IE inserts

The issue I am experiencing is when entering text…

SW4
  • 69,876
  • 20
  • 132
  • 137
3
votes
1 answer

What Rich text editor should I use for a custom CMS

I want to build a custom CMS where users a Rich text editor is the main way to create content rather than wiki markup. Besides stability and performance, I want the RTE to be easily extensible. The latter point is very important because I intend to…
numan salati
  • 19,394
  • 9
  • 63
  • 66
3
votes
2 answers

How to enable the colorbutton in the TYPO3 CKEditor

I'm trying to enable the colorbutton plugin to use the TextColor feature in the TYPO3 CKEditor but it won't work. I've already tried to include all needed external plugins which are required by the colorbutton plugin. I've downloaded the plugins for…
Jan Fässler
  • 696
  • 8
  • 17
3
votes
0 answers

Multiple font styles from selected text

I have an RTE which can have different font family, font size and font colors. If a user selects text from this RTE which has different font styles, it need to provide all the font family, font size and font colors list. I'm using…
Saju
  • 31
  • 6
3
votes
1 answer

How to properly style React Rich Text Editor (react-rte)

I want to style react-rte using a CSS file, but was unable to do so. The RichTextEditor always injects inline styles into bottom of HEAD section, which overriden my class styling.
Long Tran
  • 83
  • 1
  • 8
3
votes
1 answer

Limit `Insert Sitecore Link` Locations in the RTE (Sitecore)

I am looking to do something similar to the Insert Sitecore Link as I can with, for example, Image fields in which I can add a Source in order to limit from what directories an Image can be picked from. I want to be able to limit what items the…
Moo
  • 3,369
  • 4
  • 22
  • 41
3
votes
1 answer

How to force BE users to paste as plain text in TYPO3 6.x?

CMS users tend to paste anything into CMS text editors. To prevent website destruction - and as log as there's no non-wysiwyg editor (like markitup) for TYPO3, I would like to as least have some good old "force plain text paste" in place. TYPO3's…
Urs
  • 4,984
  • 7
  • 54
  • 116
3
votes
3 answers

Typo3 6.0.2 Add RTE Class

how can i add new classes to TYPO3 RTE (version 6.0.2) i tried the same way as with Typo3 4 : - created a css file in fileadmin folder (fileadmin/css/rte.css) - add style in this css file - add those lines in page TSConfig : RTE.default…
user2147708
  • 96
  • 1
  • 4
3
votes
3 answers

Javascript RTE with spellcheck

Can anyone point me in the direction of a good rich text editor (cost not an issue) that has an inbuilt spell check or can be configured to point to an internal spelling service. I cannot use widgets that harness external jsonp services (google api…
redsquare
  • 78,161
  • 20
  • 151
  • 159
3
votes
2 answers

Change textbox text inside a tinymce editor using javascript

I have a textbox inside a tinymce editor. I want to change textbox text by using javascript. Can any one tell me how is this possible? Thank you
2
votes
1 answer

tinymce resizing with jquery

Here is the code: tinyMCE.init({ mode: "textareas", theme: "advanced", plugins:…
petko_stankoski
  • 10,459
  • 41
  • 127
  • 231
2
votes
2 answers

How to enhance the standard content element by an additional RTE field?

So I have an extension which I can choose as a content element. It has his own tab ("video") but also uses the standard tab "general" and some special tabs where I can configure the extension. Is it possible to add a "RTE" text tab (like in "Text…
Tomkay
  • 5,120
  • 21
  • 60
  • 92
2
votes
4 answers

Free RTE [Rich text editor] help needed integrating it

Working on a PHP /html content management system and found Free RTE online which is a free rich text editor. Have no idea how to integrate it into my own stuff. There are sample codes with it alrite, but they are not very clear. Anyone used it…
djdonal3000
2
votes
1 answer

TYPO3: how to add an element to the RTE, which allows the user to use a defined CSS class

I want that the user should be able to select an textstyle in RTE like Detail, Important, Name of person and so on. So I would like to define a CSS and this option should be shown in RTE. The CSS style should be a span and only setting a…
testing
  • 19,681
  • 50
  • 236
  • 417
2
votes
1 answer

TinyMCE and fancybox interaction error

I'm trying to use tinyMCE on a textarea that i display using jquery fancybox. I've tried using the tinyMCE jQuery plugin , the default download version of tinyMCE and the full download version of tinyMCE the first time i open the form (the form is…
Raz
  • 682
  • 1
  • 7
  • 19
1 2
3
20 21