wysiwyg

Which JavaScript MVC framework to use for wysiwyg editing and floating context-sensitive settings panel?

I'm developing a cms that allows editing everything on the page (generated server-side with a template engine) by just clicking on it — the area turns into input field, textarea or a full-featured tinyMCE editor, Template defines editable elements like "page heading", "copyright footer text", "image", "rich text block" etc. Along with ...

Teach Markup or use a WYSIWYG editor?

When it comes to WYSIWYG editors WYSI rarely WYG. The problem I always have is when people paste in formatted text from word. Ideally, what I'm looking for is a way for people to input text into the document while at the same time teaching them structure... I just don't know if that's a realistic goal ( compared to cut n' paste ) I'm c...

Javascript wysiwyg editor with image upload functionality (use with JEditable)

I'm looking for a good wysiwyg editor with image upload functionality (i.e. a user can add as many pictures as he likes, form URL's or disk, and they'll be uploaded). I already tried TinyMCE, but it was really heavy and took a very long time to load (I'm using JEditable to only make the editor appear when the user clicks on it). ...

How to write a Google Doc type rich text editor

I need to write a rich text editor similar to Google Doc. Does anyone know any samples of similar projects? What technologies will I need? and what process is involved? ...

When to use WYSIWYG Editors?

It appears to me, from searching stackoverflow, that hand coding html/css is superior to using WYSIWYG editors. I'm a few weeks into learning html and css, and I've only hand-coded so far (though I do have the Adobe Suite). My questions: is it ever worth learning how to use a WYSIWYG editor (like dreamweaver)? And, more importantly, whe...

"Constrained" HTML textarea/WYSIWYG editor?

I am looking for a web-based JavaScript <textarea> editor with support for standard features like selectable font, text colour, paragraph alignment etc. However, there is one considerable constraint: Formatting should always apply to all the text, not parts of the text. That is, the user is able to colour all of his text red, or all of h...

CKEDITOR - Is there anyway to prevent formatting code in SOURCE mode?

I've spent the good portion of my day trying to figure this out, and I figured I'd finally just give in and ask. How can you prevent ANY automatic formatting when in SOURCE mode? I like to edit HTML source code directly instead of using the WYSIWYG interface, but whenever I write new lines, or layout tags how I would indent them, it al...

Javascript UndoManager Browser Support

The HTML5 spec mentions an UndoManager that can be used to query the previous state of a document that's been edited by a user ( http://www.whatwg.org/specs/web-apps/current-work/#undomanager ). Do any browsers support this? Is there any hope of browsers ever supporting it? ...

Is there a way to display floats correctly in Dreamweaver CS5 Design View?

Hi there, I'm setting up templates and snippets for my design team, they don't want to fuss with this that and the other. I figure fair enough, and everything's mostly going well, except that I'm experiencing difficulties in displaying floats in Design view. It's important to note that Live Preview displays beautifully, as does my outp...

Need help getting Wysihat to work

Hi all, I'm using Wysihat in a rails project and am stumped by its inability to bind to my textarea named post_description (model name Post field name description). I have the following in my head tag: <%= javascript_include_tag 'prototype_1.7'%> <%= javascript_include_tag 'wysihat' %> <script type="text/javascript" chars...

Html editor (WYSIWYG) for WinForms (C#)

Hi, As in the question. Do you know any good (it would be nice if free) WYSIWYG html editor for WinForms (C#)? There is only one requirement: it has to be manage code only (by this I mean, it can't use mshtml COM object (WebBrowser control)). I've found this: http://www.modeltext.com/html/ but there is no download/buy option. I will b...

Problems with contenteditable in Firefox

Hello, I am working on a Javascript WYSIWYG editor in Firefox. I am using a div with the contenteditable attribute set to true in order to accomplish this (I cannot use a contenteditable iframe for this particular project). This contenteditable div is nested in another div that is not contenteditable. I am encountering the following t...

PHP XSS Prevention WhiteListing

My site utilizes a WYSIWYG editor for users to update their accounts,enter comments, and send private messages. The editor (CKEditor) is great for only allowing users to enter valid input, but I worry about injection through TamperData or other means. How can I control this on the server side? I need to whitelist specific tags: <b><...

TinyMCE or HTML5's contentEditable attribute?

I have always hated wysiwyg editors but most of the applications I develop they are necessary for our clients to edit their content. After trying out a few different ones I seemed to like tinyMCE the best. Although powerful and seems to generate fairly good HTML it is not without its issues. Recently I have been thinking about creatin...

Changing the HTML of CKEditor form elements (in the dialog window)

I'm trying to modify the HTML of the dialog boxes in CKEditor. The HTML inside each of those boxes is an absolute nightmare, and even worse, the source code is compressed and it's unclear what the path of execution is. I want to take something like this: <div class="cke_dialog_ui_select" id="44_uiElement" role="presentation"><label st...

WYSIWYG - Editor that validates source code.

Is there a WYSIWYG editor that is able to format code? So when anyone inserts code into the wysiwyg editor box, it would properly format it? ...

Drupal filter_form form input

This drupal form snippet will give me a textarea with user able to change filter to full html/wysiwyg mode. My Questions: How can I default to to full html mode? function MY_MODULE_admin() { $form = array(); $form['format'] = filter_form($form->format); // MY_MODULE - ** Image 1 ** $form['MY_MODULE_image_1'] = array( '...

WYSIWYG Editor for TWIKI

Hey, i'm searching for an WYSIWYG Editor tool which i can run as normal Windows Application and wihich generates for me the TWIKI "Code". Is there any Application/Software that provides this functionality? THX ...

What are the wysiwyg editors that have proven to be reliable at large scale?

I recently heard that jWYSIWYG editor isn't a reliable editor for a large scale website. Are there other WYSIWYG editors that have proven to be reliable on a large scale? Thanks, Walker ...

WYSIWYG editor security question (preventing malicious input)

I'm using jWYSIWYG in a form I'm creating that posts to a database and was wondering how you can prevent a malicious user from trying to inject code in the frame? Doesn't the editor need brackets (which I'd normally strip during the post process) in order to display styles? ...