Tagged Questions

7
votes
1answer
304 views

Allowing custom tags in TinyMCE for intergration with indexhibit

I'm trying to allow some custom tags to be entered into TinyMCE. The tag is <plug:plugin_name /> However this is turned into <plug:plugin_name></plug:plugin_name> I'm about to ...
4
votes
3answers
530 views

How to create a rich text editor [closed]

Hey all i want to know what is the concept behind creating the rich text editor. i mean how to create a rich text editor. I want to learn the implementation. PS: please donot suggest using YUI or any ...
4
votes
7answers
655 views

Looking for a Rich Text Editor that is simple

I need a Rich Text Editor, if that is the right word for some javascript routines that take over a textarea and makes it look like a word processor. I have looked at TinyMCE, CKE, and Whizzywig. ...
4
votes
5answers
99 views

determine when contents of html tag changes

Is there a way to determine when the contents of a HTML tag has changed? I would prefer to catch an event rather than polling it. My use case is I have text enclosed in span tags within a rich text ...
2
votes
1answer
20 views

TinyMCE is removing some part of html

I want to be able to insert empty div and span elements, text like [something], but when I save TinyMCE is removing all this code. Is there a config option that tells TinyMCE to return me the exact ...
2
votes
2answers
131 views

Best jQuery TextEditor

Anyone know a good Rich Text Editor preferably in jQuery that has a good interface, is customizable and easy to integrate in forms where submitting data is crutial.. I am making a website where ...
2
votes
1answer
73 views

Javascript rich text editor that allows locking regions

I'm looking for a rich text editor that allows for locking regions so that they can't be edited by the user. These locked regions would contain markup, not just plain text. TinyMCE has a plugin to ...
1
vote
3answers
184 views

JavaScript WYSIWYG text editors

I'm writing a heavily-customised WordPress CMS for a fishkeeping website. Currently I'm working on the species profiles which consist of a load of small fields (Genus, Species, Diet, Compatibility, ...
1
vote
2answers
64 views

How to implement a Rich Text Editor in HTML?

Here is the demo: http://www.kevinroth.com/rte/demo.htm when I use firebugs to inspect the source code, I see that it is iFrame only, but how can the iFrame have a text area behavior?? Any ideas on ...
1
vote
0answers
38 views

What options are out there for an Cross DOmain WYSIWYG editor?

I'm writing a 3rd party API for use in client websites and I need a text editor with some basic functionality. It needs to be WYSIWYG as the end user is non technical. I've looked around and the ...
1
vote
1answer
125 views

CKEditor Defining Custom Toolbar

I am using CKEditor and have defined a custom toolbar in the config.js file. However, this custom toolbar does not appear when I refresh the page where I have the CKEditor appearing. Below is my ...
1
vote
1answer
56 views

Move cursor to the beginning of a designmode iframe

Is it possible to move the caret to the very beginning (right before first element) of a designmode IFRAME?
1
vote
1answer
129 views

RichText :inserthtml not working properly in Firefox

I am trying to insert some text content at the cursor position in my contentEditable iframe for the following content(<span style='fontweight:bold'>ab</span>) ab... Here i place the cursor ...
1
vote
0answers
265 views

Online RTE (Rich Text Editor) javascript library with data uri capability

I'm looking for a RTE javascript library (e.g. tinyMce) to allow user to create rich web content. I'm very keen to find one that is: lightweight (not a must) allow image upload that can transform ...
1
vote
1answer
251 views

Counting Character of jwysiwyg text editor?

I am trying to set maximum character length for an jwysiwyg text editor. I tried to use .keyup function. But its not working. I am using dwr.util.getValue("jwysiwyg") //Its a dwr utility to get ...
1
vote
1answer
259 views

Use YUI 2's Rich Text Editor for Inline Editing

I am using inline editing in YUI 2's DataTable. I would like to use the Rich Text Editor for this, but it is not among the built-in options. Does anyone know of code that does this or how one might go ...
1
vote
1answer
247 views

How to add Rich Text Editor to display code snippets

Im working on a Rails based application where I have the need to allow the user to format the text he enters and I would also like a way to highlight code snippets the way Stackoverflow does when I ...
1
vote
3answers
175 views

Why mysql is not storing data after “#” character?

Hey Friends, I have made one form in which there is rich text editor. and i m trying to store the data to database. now i have mainly two problem.. 1) As soon as the string which contents ...
1
vote
1answer
322 views

Is possible to capture KeyDown event when current document is in design mode?

As you know, most of rich text editor use iframe to create WYSIWYG editor. In iframe contain document that is in design mode. I want to capture key down event when user press '@' character in rich ...
1
vote
2answers
165 views

YUI SimpleEditor not right layout

I've downloaded the YUI library for the nice SimpleEditor. When installed and created a simple test. It will not display right. this is how it should look like. ...
0
votes
2answers
45 views

rich editor - get value

I am trying to get the value of dojo editor and append it to the hidden input. This code: onClick="dojo.byId('editorContent').value = this.getValue() works correctly if i put it in the div of the ...
0
votes
1answer
24 views

Rich Text editor for multiple text boxes

In one of our apps, we are building a custom rich text editor where the toolsets (bold, italics, bullets .. etc) are applicable to multiple text boxes. We are almost done building the same. It has a ...
0
votes
1answer
48 views

Can a `range.insertNode` be undone using browser's undo, in a contenteditable div?

I am working on a contenteditable div to make a simple RichText-Editor. One of the requirement I have is to be able insert html chunk at cursor postion on a button event. I was able to get that part ...
0
votes
1answer
47 views

can't get textarea field using jquery rte lwrte?( issues of plugin behaviour I think)

I am using this plugin http://code.google.com/p/lwrte/, but I can not select the textarea or the id with jquery, I know it creates an iframe, but I read the docs and It does not mention anything ...
0
votes
2answers
311 views

Need to make selected text as bold/italic/underline using javascript, or need very basic text editors suggestions

I am trying to figure out how to create a textarea with 3 buttons: bold, italic, underline. I cannot go with any WYSIWYG editor as I have tested most of them and no one fits my needs. (e.g. most are ...
0
votes
1answer
58 views

How to set the dojoConfig parameter in dojoeditor based on a hidden variable value

I am new to dojo(infact coding) and am struggling with setting the locale on the dojo editor. I have a scenario where in JSP1: language value is input and the value is submitted as a hidden variable ...
0
votes
1answer
119 views

Remove inline style when saving richtext editor text in database using asp.net

I am using jquery richtext editor, Is there a way to remove all the inline style that richtext editor add, as some users are adding there own style and its breaking the layout. is there a way using ...
0
votes
0answers
62 views

img tags as block elements (outside paragraphs) in CKEditor

I want to have my wysiwyg editor to allow image uploading, but I want images to be block level elements placed BETWEEN other block level elements (h1, p, etc) only. But there's an issue... img tags ...
0
votes
1answer
352 views

Tabber.js script not running in DotNetNuke

I have designed an html page that uses the tabber.js script to create tabs on my page. It works fine in a basic html page when ran in VS. However in DotNetNuke, I put the div tags which represent the ...
0
votes
3answers
238 views

disable draging in ckeditor

Am facing an issue with my ckeditor. Am loading an entire page of html in to the ckeditor. Its loading and showing fine. I want to let users to edit only the data (texts). Not its alignment. But in ...
0
votes
1answer
69 views

is WYSiHat some how based on YUI

I have a simple question. IS WYSiHat WYSIWYG rich text editor some how based on YUI? As far as I understand it is not, but some how the way it is coded is very similar to YUI. Thanks
0
votes
3answers
556 views

Rich Text Editor supporting Table, Image and File Uploads

I am looking for a open source Rich Text Editor which supports table, images, file uploads and is as light as possible. Popular RTE like tinyMCE, CK Editor are too big and there is no image and file ...
0
votes
1answer
335 views

HtmlEditor and increase/decrease font size with Midas commands

I came across some cross-browser weirdness while trying to integrate the ExtJs HtmlEditor into our project: If you decrease/increase the font size in Firefox3.6, it wraps the selected text in a '' ...
0
votes
2answers
462 views

CKEDITOR ajax posts

I have looked far and wide, and I cannot find any answers. I am trying to make an admin page using ajax so when the client updates information in the CKEDITOR it doesn't have to take him to a new ...
0
votes
2answers
1k views

Plain and Rich text editor options in TinyMce editor

I am using tinymce editor to give good look of textarea where user write some comments.I want to give him two options one is plain text and the other is rich text editor option.When user click on ...