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
2
votes
2 answers

How to find the position of Cursor to select text from that position in Edit text?

I am working on Keyboard for android devices where i am Text editing options like Google Keyboard like (Text selection, copy paste etc). for example i typed a text ABSCEONDER and now i want to selection some portion of text. like i want text…
2
votes
1 answer

Office 365 api (or equivalent) for Word/Excel collaborative editing without account?

Is there a way to create/edit Word/Excel documents using an API, and then allow users to edit them without needing an Office 365 account (using some url based token) ? My website already give the possibility for users to upload documents, and I…
2
votes
2 answers

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…
Peter Long
  • 3,964
  • 2
  • 22
  • 18
2
votes
1 answer

Applying multiple classes to block level elements in ckeditor

Is it possible to give a 'p' tag multiple classes via two independent style definitions? Say for instance, a user wants to add the class 'color-blue' to a p tag. And after, they want to add another class 'uppercase' to the 'p' tag. var one = new…
Sean
  • 779
  • 6
  • 18
2
votes
3 answers

How do I add rich text editing support to a web site?

I need some basic CMS functionality with rich text editing. On stack overflow there is a regular textarea edit control, with support for Markdown style syntax formatting. That would be beyond my users, so I want something like a rich edit control…
Rik Heywood
  • 13,816
  • 9
  • 61
  • 81
2
votes
2 answers

IE exec command rich text editing

I'm tring to insert an image in a WYSIWYG editor, but I can't insert images in Internet Explorer(6/7), although it works fine within Firefox. It fails without throwing any errors. This is what I'm using: execCommand('insertImage', false,…
vise
  • 12,713
  • 11
  • 52
  • 64
2
votes
6 answers

All I want in a Rich Text Editor is bold, italic, and links. Is there anything out there?

I'm working on a small web application that will let users enter calendar events. For the description of the event, I would like them to be able to do the following: Set bold text Set italic text Create a link Absolutely nothing else For example,…
Shea Daniels
  • 3,232
  • 3
  • 23
  • 27
2
votes
0 answers

How to create a custom ListBox with jQuery TinyMCE?

Question: I use TinyMCE, JQuery edition. Now I want to add a custom listbox to the toolbar, like this: http://www.tinymce.com/tryit/listbox_splitbutton.php# The problem is, in the example, it's the version WITHOUT jQuery. I need it with jQuery. So…
Stefan Steiger
  • 78,642
  • 66
  • 377
  • 442
1
vote
1 answer

How To Parse html String from UIWebview for richtexteditor in iphone

I am using RichTextEditor exactly as detailed in this link and I need to show the written content in table view in other class on a button click, but in the table view cell, corresponding html string is appearing. Following is my…
Youngwing
  • 577
  • 2
  • 6
  • 24
1
vote
1 answer

Change font for selected text in GIMP

I use GIMP to add text to images. For certain fonts, if I select existing text and change the font, it doesn't work. However, if I start typing, I see the text in the new font that I choose. It doesn't change the font style of the existing text. How…
1
vote
0 answers

Get Error while insert PDF by RichTextEditor in MVC 5

I'm using RichTextEditor for content and I'm trying to insert PDF, its display dialog contains this message when click insert PDF icon Unable to parse /richtexteditor/dialogs/insertdocument.xml?160322a , Maximum call stack size exceeded Pic for…
1
vote
2 answers

YUI Editor: How to paste as plain text?

I implemented the Yahoo Rich Text Editor (YUI Editor) in a Rails application using the YUI_Editor Plugin. If I copy/paste text out of a PDF into a YUI-Editor-enhanced-TextArea (YEETA :)) it does not only copy the text but also the formatting of…
Javier
  • 2,491
  • 4
  • 36
  • 57
1
vote
0 answers

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…
mdikici
  • 1,374
  • 2
  • 13
  • 20
1
vote
4 answers

Retrieve the form from one document and place it into an RTF on another form

I have an mail-in database where the mailDoc is a table of values retrieved from the incoming email. Nothing special, it just makes it easier to work with this way. I have a scheduled agent that reads these incoming emails and processes them to…
RoyRumaner
  • 769
  • 1
  • 9
  • 29
0
votes
0 answers

Find, replace and adding a new line to a text tile

I'm still new to Python and my codes are basically baby mutants! One thing I've been struggling with is editing a text file in such way: 1- Search for a specific string 2- If exists, replace it if not matching the expected. 3- If doesn't exist, add…