TinyMCE is a platform independent web-based JavaScript HTML WYSIWYG editor control released as open source under LGPL by Moxiecode Systems AB. Use this tag for questions regarding the usage of TinyMCE and its integration into CMS and other web based applications.
1
vote
2answers
5 views
Email editor with image upload feature Rails
I am developing an app for an Organization that wants to send bulk emails (newsletters).
I need to create an interface to compose emails with image embed feature. I can use TInyMCE. But I dont know ...
2
votes
1answer
37 views
%22 (double quotes) added to url out of nowhere
I am making a mail programm that wil be used to mail newsletters to customers, in the newsletters will be images and links. When I tested it on localhost everything worked fine and the links worked. ...
1
vote
0answers
13 views
TinyMCE 4.0 Listbox submenu
I want to create a Listbox with a submenu but I don't know how to make a submenu.
The documentation on TinyMCE is crappy so that is why I ask it here.
This is my code:
editor.addButton('OwnStyling', ...
1
vote
1answer
20 views
Using TinyMCE as a text editor
TinyMCE is used in one of my projects as it was meant to be used; a WYSIWYG HTML editor.
I created a number of plug-ins for it that inserts certain fragments of text into the HTML and all is working ...
1
vote
1answer
29 views
Jquery conflict with WordPress Tinymce
I'm using WordPress TinyMCE editor inside admin page for my plugin.
<td id="content_update_editor"><?php the_editor('Write your content here..');?></td>
I also have some Ajax call ...
1
vote
1answer
16 views
Tinymce right click paste mouse enable
(I disabled the contextmenu plugin.)
In tinymce i would like to paste a text with the right click menu mouse like in this text editor here.
I noticed that i can do that when the selector is blinking ...
1
vote
0answers
16 views
How to prevent page scrolling with tinymce
I have a tinyMCE editor with the editing toolbar set to being external. The positioning for this is "fixed". The problem is that every time a user clicks on anything in the toolbar (while changing ...
2
votes
1answer
22 views
how to validate tinymce textarea for preceding and trailing white-spaces?
I am trying to validate tinymce content. But it accepting trailing and white-spaces. Beacause when user enter blank spaces it takes with paragraph tag <p> </p> like this.
-1
votes
0answers
19 views
TinyMCE 4 ControlManager SetActive
In TinyMCE 3 there was a ControlManager and a SetActive for activate the button when selected a image or text.
In TinyMCE 4 i cant't find this ControlManager.
I got this code for activating the ...
3
votes
0answers
20 views
TinyMCE making app to hang on iOS
I'm making an ajax request and then I init TinyMCE for all textareas that came with the request's response. It works just fine on all browsers, except iOS Safari (I've tried only on 6).
What it does ...
1
vote
0answers
27 views
How do I add a file uploading feature to tinyMCE?
I am currently using tinyMCE for my website. I want to be able to browse folders on my computer to upload images. When I click on insert/edit image, it shows a button to browse files, but when I try ...
1
vote
1answer
13 views
How to work with nested property in tinyMCE in ASP.NET MVC
Using the tiny MCE editor template in ASP.NET MVC provided as sample via Nuget.
In this template there is a call to tinymce method as below:
...
2
votes
2answers
40 views
Validating word count tinymce
I'm working on validating my tinymce editor. At the moment I have it validating by character count which works, but I would like to turn it into sort of like a word count since this is supposed to be ...
0
votes
0answers
36 views
tinymce - Cannot call method 'getContent' of undefined
<!DOCTYPE html>
<html>
<head>
<title>Nor-Avetisyan Admin</title>
<link rel="stylesheet" href="<?php echo URL ?>views/admin/css/navi.css">
<link ...
1
vote
0answers
8 views
TinyMCE 4: Allowing select and input checkboxes to be editable
An HTML template that I'm working on has a variety of HTML select and checkbox elements contained within it.
Eg.
<select>
<option></option>
<option>No</option>
...
1
vote
1answer
30 views
tinymce textareas value error - cant solve
$('.button-save').click(function(b){
b.preventDefault();
var title = $('#title').val(),
category = $('#category').val(),
file = ...
0
votes
0answers
14 views
Embedding a TinyMCE editor in PyQT QWebkit
as the question states, I wish to embed a tinymce editor in a PyQT webkit component.
As far as I understand, evaluateJavascript allows for js functions to be called.
However, when I try loading ...
1
vote
0answers
17 views
Django-Tinymce Import Error
I am trying to follow this tutorial on getting tinymce working with django and zinnia. It's not working, so I am attempting to do "Testing" but get this error when I run django-admin.py syncdb. How do ...
3
votes
1answer
50 views
Extending directives in AngularJS (sharing properties before and after link)
I have a directive which creates a rich text editor in its LinkingFunction. The small directive I'm using for my rich text editor can be found at ...
1
vote
0answers
15 views
how to paste <pre> into tinymce and preserve the formatting?
This seems very hard to do.
I'm pasting html code with <pre> into tinymce editor.
All the whitespaces are gone inside the <pre>
e.g. I'm trying to copy StackOverflow's ...
1
vote
0answers
30 views
TinyMCE: Prevent link from inheriting selected font color?
I'm using TinyMCE to style a span, but I have links within that span that I want styled by CSS. I have the !important declaration to ensure the CSS is used instead of what TinyMCE selects as the ...
1
vote
0answers
32 views
On key up / change / blur using latest tinyMCE version 4
I get some live validator results via ajax and I would like to integrate this to work with the latest version of tinyMCE. What I need is to call my validator function on change, keyup and blur of the ...
1
vote
1answer
18 views
jQuery UI Dialog with TinyMCE blocks first button click in Firefox
I have a jQuery UI Dialog form, which has a TinyMCE editor. It is working well with Google Chrome and Internet Explorer 8+.
But in Firefox, when I edit/change the content in the TinyMCE editor and ...
1
vote
1answer
24 views
scroll to specific content in TinyMCE editor
I am using TinyMCE editor plugin with ASP.NET and MVC3.
I want to scroll to particular DIV content in html. How can i do that.
var ed = tinymce.editors[0];
var $marker = ...
0
votes
0answers
8 views
TinyMCE using WPF VB.NET Webbrowser Control
i want to use TinyMCE in a WPF Webbrowser Control. I have downloaded TinyMCE, installed it into my project directory (Visual Studio 2010) and have the following html:
<head>
<script ...
0
votes
1answer
16 views
Custom UL styles in tinymce editor
I want to change the structure of UL list in tinyMCE editor from:
<ul>
<li>item 1</li>
<li>item 2</li>
</ul>
to:
<ul>
<li><i ...
1
vote
1answer
19 views
How to remove the specified option from right click meun in tinymce?
I want to remove the image property option from the right click menu in tinymce. I'm using tinymce 3.x version please help me.
Thanks in advance
1
vote
1answer
29 views
Write Ruby code inside TinyMCE textbox
Is it possible to write Ruby code inside the TinyMCE textbox? I've tried accessing some model data by putting <%= foo.bar %> inside a TinyMCE textbox but when rendering the raw text it displays the ...
1
vote
1answer
22 views
TinyMCE opened in jqueryUI modal dialog
When using tinyMCE in a jqueryUI modal dialog, I can't use the hyperlink or 'insert image' features.
Basically, after lots of searching, I've found this:
...
-1
votes
0answers
14 views
TinyMCE removing buttons [closed]
Recently I've added TinyMCE to my website.
In it's current (default) state it has too many options for the people who will be using it, and I would like to remove a few of them.
I've already tried ...
1
vote
1answer
18 views
tinyMCE object delete event trigger
Is there a way to trigger an event when the user deletes an object in tinyMCE?
I'm trying to erase uploaded images from a cache folder when the users deletes an image from the tinyMCE instance. So if ...
-6
votes
0answers
20 views
Tinymce doesn't passvalue while edit [closed]
In tinymce ,first i came and enter values.It passes the value as usual.
But while come in edit mode and edit the value already in it,then it returns the same value as before.How to enable the editor ...
1
vote
0answers
46 views
I dont know why TinyMCE is disabled in Firefox(14.0.1)
(Rails app) - In a webpage, I am using multiple forms. Inside each form I have a tinyMCE editor with different id's. But, when it renders, I can see that the TinyMCE editor in the second form is ...
1
vote
1answer
20 views
remove the extra p tag in tinyMCE
when you copy and paste from a word document in to the tinyMCE editor some time there are unwanted p tags
<p> </p>
<div class="starpasspro-example-question">
...
1
vote
1answer
20 views
Load content into TinyMCE
In advance thank you all for your help.
I want to load content into a TinyMCE textfield.
My code looks like this:
<?php
require_once('adminmenu.php');
$articleid = $_GET['id'];
...
1
vote
0answers
7 views
SimpleCmsImage.save will not save a thumbnail image
I have a Ruby on Rails web application that uses the Simple CMS plug-in to upload images to the app.
I've used this before. In fact, my current web application is a clone of an original application ...
-3
votes
0answers
25 views
Is it possible to use the tinymce skin from wordpress? [closed]
Is it possible to use the tinymce skin that you from wordpress as a custom skin for input fields of other web apps? It's probably just a question of getting hold of the css. But is there a known way ...
1
vote
1answer
34 views
Can't bind html with angularJS and tinymce
so the goal is to edit some text with tinymce, persist it and display it in a div using angularJS with the same html, style formating.
I'm using tinymce 3.5.8 with angularUI directive, I've managed ...
1
vote
0answers
19 views
How to start a new line in tinymce with jQuery
I am trying to write a few plugin buttons which will generate some plugins in the WordPress TinyMce editor.
Everything works 100% apart from the code is coming out like this:
[accordion_wrap] ...
0
votes
0answers
13 views
Tinymce bullet point ul li list not showing full width
I have a problem with Tinymce not showin gthe the ul li list bullet points the full width of the container it is in, can someone point me into why this is even though i have set the css for the ul li ...
1
vote
0answers
42 views
TinyMCE - dynamic add/remove multiple times
I'm working on some web application that uses tinyMCE. I use regular (non-jQuery version) of TinyMCE 3, but I use jQuery to add and remove it from the textarea.
The textarea itself is populated first ...
1
vote
1answer
36 views
add tinymce for new element loaded dynamicaly
My page is lodaed with 5 divs which can be edited by Tinymce inline editor. I've a peace of Jquery loding 5 new ones by clicking on a button (so dynamicaly). But of course the new ones are not ...
1
vote
0answers
20 views
Auto Adjust height of TinyMCE textarea
Currently I'm using plugins: "autoresize" to auto-adjust height of contents in TinyMCE Text Area. It's not adjusting height correctly on all browsers.
Ex: If text area has only one character, it ...
0
votes
1answer
22 views
Is there any way to avoid momentary display of HTML source code in TinyMCE Text Area?
One of the application is loading few images using URL in TinyMCE Text area.
When page loads, momentarily it shows HTML source code of the textarea and then HTML Output gets displayed.
Sequence of ...
0
votes
0answers
17 views
TinyMCE strips tags and run time classes
I was wondering how to tell TinyMCE to not to strip out my runtime classes. I have implemented a jQuery mobile table system into TinyMCE tables, but it strips out some of the main classes.
I know ...
1
vote
1answer
23 views
Tinymce getting back just text
I have some custom validation for my forms on my tinymce textarea. My problem lies there unfortunately. I'm limiting the text entered to 500 characters and below the box I have a 'counter' that counts ...
1
vote
1answer
46 views
Toolbar position in inline TinyMCE 4.0
I'm looking into using TinyMCE 4.0 inline and noticed that the toolbar is floating right above the div. I wanted to have it fixed under another toolbar on top of my page with:
position: fixed;
top: ...
2
votes
1answer
26 views
Getting DIV with specific ID to the top of TinyMCE editor
I am using TinyMCE as HTML editor with Asp.net and MVC3.
I have Html something like this
<html>
<div id = "A1" ........../>
<div id = "A1" ........../>
<div id = "A1" ...
1
vote
0answers
22 views
I'm trying to replace a tag with database value using template_replace_values in tinymce (personalizer)
any example for template_replace_values(functions) in TinyMCE.
So that we can change something like %%username%% to "John K"
We will store the templates in mysql which include tags (%%username%%) ...
1
vote
1answer
19 views
Installing tinymce on my pages
I have installed tinymce. Basically, when I go into my cms I make the changes. For example, making the text red. In the edit page it works fine, but when I go into my website, the changes do not ...









