Tagged Questions
0
votes
0answers
6 views
any way to cache TinyMce ajax?
I'm using TinyMce AJAX on an asp.net web form with postbacks. every time I do a postback, the entire TinyMce.js is sent from the server to the client.
If I use the normal non-ajax TinyMce, the ...
2
votes
1answer
32 views
TinyMCE's value in bean on second submit (using jsf.ajax.addOnEvent)
I have set up a basic testcase in which I'm experience some (to me) weird behaviour. When using the setup below, the typed value in the editor will only be visible by h:outputText on the second ...
2
votes
2answers
53 views
Javascript on (before and after) every Ajax-call
Since I'm working with TinyMCE (please don't go into "Primefaces has an editor" or anything similar) I need to execute a small piece of Javascript before and after every Ajax-call. I'd prefer not to ...
1
vote
1answer
36 views
Inserting Script Output TinyMCE and Jquery
I have a script that creates a basic table layout structure and I'm trying to use AJAX with jQuery to input the output of that script into a TinyMCE textarea. I wrote the script in PHP and it works ...
1
vote
1answer
30 views
Running Tinymce multiple ajax calls issue
I have been sending multiple ajax calls from a single page and trying to load TinyMCE with each ajax call. But TinyMCE loads only the first time.
The code I have been using after AJAX success:
...
4
votes
0answers
201 views
TinyMCE execCommand return undefined
I'm trying to remove tinyMCE from a specific textarea that I have created earlier but the following command kept on producing "undefined" error (checked using firebug console):
...
1
vote
1answer
60 views
PHP Text Encoding/Decoding (TinyMCE)
I have been struggling with this process for a while so I could use some help.
I currently have a page where the user can edit his page using TinyMCE.
The workflow is basic:
User makes his edit -> ...
1
vote
1answer
31 views
Setting TinyMce on Ajax / Javascript textarea field
I have a form with a little bit Ajax / Javascript that adds / edits / removes.
One of the functions of the JS looks like:
$(".edit_row input:radio[type=radio]").live("click",function() {
var ...
0
votes
0answers
27 views
Customising image list in tiny MCE list
I'm trying to customize image list in tiny mce to get all images in folder. This is what I have done.
Filename: Image_List.js
I'm sending AJAX Request to server to get images/file names in folder. ...
1
vote
2answers
348 views
tinyMCE ajax to save data
I have seen many posts about tinyMCE and ajax, but i could not get it working - not by triggering tinyMCE.triggerSave(); not by overriding submit and not by triggering tinyMCE.get("elm1").save();
...
1
vote
1answer
106 views
How to Add TinyMCE textbox using ajax
I want my user to select templateId from the select list, when user select then query the database to bring the template Contents based on templateId . Then I would like show the Template Content to ...
2
votes
1answer
101 views
Having issues with Multiple AJAX refresh and TinyMCE
So I'm running into this predicament.
<SCRIPT src="../js/tiny_mce/tiny_mce.js"></script>
<SCRIPT type="text/javascript">
tinyMCE.init({
mode : "textareas",
theme ...
1
vote
0answers
179 views
getting 403 forbidden in ajax
I am getting a very strange 403 forbidden error in an ajax call. The data is being sent in a post javascript object of multiple javascript variables after applying JSON.stringify on the object.
One ...
1
vote
1answer
158 views
Jquery Ajax TinyMCE
I have a dynamically generated link list from MySQL table for TinyMCE. This works OK showing all links in the table. Now I'm trying to pass a value via ajax to the php file that generates the list ...
2
votes
2answers
376 views
IE9 ajax save permission denied
IE9 TinyMCE ajax save problem
I have few tabs in one page and in one of the tab i have three textareas(all containing TinyMCE) editors.
I m using ajax to post form and save values and then ...
1
vote
0answers
129 views
Using jQuery's AJAX functionality within wordpress' TinyMCE editor
I've written a custom TinyMCE plugin that gives me one more button which, when clicked, opens a modal window, allowing me to select images from my uploads, that can then be added as custom gallery in ...
2
votes
1answer
217 views
TinyMCE textarea and post form using ajax
I m using tinyMCE for textareas and POSTing form through AJAX.
But when I m trying to save textarea value, it is taking old values on first click, but it takes updated values on second click.
I have ...
1
vote
2answers
146 views
Unable to serialize a form that contains a tinymce editor for an Ajax call
I'm trying to post a form that contains an instance of tinyMCE editor to an action method using AJAX. My View:
<script src="@Url.Content("~/Scripts/tinymce/tiny_mce.js")" ...
0
votes
0answers
24 views
Tiny MCE Combo Box Strange Position
i have used Tiny MCE and something wrong, the combo box list appear in strange position. Here's the link
http://103.imagebam.com/download/0q5oXQZf7-JsgaCeNjjkew/22248/222470402/Blur%20Image.png
How ...
2
votes
1answer
22 views
tiny mce can't send word tags in ajax
I'm using tiny mce to send ajax information via the post method. It works OK when I send regular text or even HTML tags; but, when my users paste from a Word document, only the first tag is posted to ...
1
vote
1answer
101 views
Pass Javascript Array in Array using Ajax
I get my fields like array whit javascirpt . Every array field is array whit proporties.
Examle.
arr[0]
{
'id':'1',
'title':'testtitle',
'value': 'test value'
}
arr[1]
{
'id':'2',
...
0
votes
2answers
92 views
With XML, when does jquery's .attr() and getAttribute() return different results?
I'm getting an XML response from a server and parsing it in jquery (jQuery 1.8.2 on Chrome 23.0.1271.64 and Firefox 15.01) to get various attributes. 2 out of 3 times it works as planned, but that ...
1
vote
1answer
238 views
jQuery for the dropdown change event does not populate textarea
I would like to ask if anyonce can help me.
I have form with a drop down list. my problem is that I am using TinyMCE as editor.
When I select an item in the drop down it doesn't populate the TinyMCE ...
1
vote
4answers
282 views
Cannot make textarea populated by Ajax with TinyMCE editor
I've been working on this for almost 4 hours and I can't get it work.
I have a form with a textarea and a drop down list. The drop down data is from MySQL database. When I select and item in the drop ...
1
vote
0answers
68 views
TinyMce integration in ajax php page
I create an html page having 1 buttons clicking on the first will call a php file "1.php" via ajax where there is a tinymce editor attached with a text area.When after opening the page i'm pressing ...
3
votes
1answer
175 views
Google Docs style Autosave using TinyMCE
I have a form using the TinyMCE Editor running on a LAMP system. I wish to create an autosave feature similar to Google Docs. I have thought of two scenarios however, both will produce an overhead ...
0
votes
0answers
219 views
TinyMCE iframe not showing up
I have an ajax call that returns an iframe to the tinyMCE editor. The outline shows up but the iframe vid does not. I have added extended_valid_elements: "iframe[src|width|height|name|align]", to my ...
0
votes
1answer
247 views
TinyMce editor not working on Ajax facebox
I am tried to add A tinyMCE editor on an ajax facebox popup window but it doesn't show up.
I referred to this link http://www.tinymce.com/forum/viewtopic.php?id=27754 but its not working in my code. ...
2
votes
1answer
284 views
jQuery .ajax() is breaking TinyMCE 3.5.6
I've built a simple CMS with multiple layers of jQuery.ajax(), like so:
function navto(destination, pageToEdit, insertInto) {
// use JQuery's ajax method to control main navigation
if (pageToEdit == ...
1
vote
1answer
444 views
TinyMCE + Fancybox (AJAX) is giving my layout hell
[Left is the same page as the right, only the right shows all the elements flying out the top of the Fancybox after init of TinyMCE]
SEE LIVE EXAMPLE
My current setup has Fancybox using AJAX to ...
0
votes
1answer
494 views
TinyMCE not able to load content when called for second time in one page in Mozilla
Basically,I have loaded tinyMCE on the textarea. And my motive is :
When the button is clicked, the editor should be filled by the description stored in
database through ajax call.
It works ...
0
votes
2answers
251 views
Coldfusion ajax html submit
I am using railo and attempting to submit a tinymce text area via ajax.
My problem is upon submission it seems that the html is stripped and the sql isn't actually updated.
here is my code:
...
2
votes
1answer
232 views
How can I defer parsing of (a.k.a. dynamically load) the tinyMCE wysiwyg text editor javascript file?
I know how to defer parsing of javascript files. That's easy.
What's not so easy is dealing with the various otherfiles tinyMCE calls after the initial javascript file. Mainly because tinyMCE ...
1
vote
1answer
558 views
jQuery form serialize data missing in CodeIgniter with TinyMCE
I'm using tinymce. And I'm sending data by jquery ajax call like this
// update textarea from tinymce
tinyMCE.triggerSave (false,true);
$.post ('', $('#page_form').serialize (), function (x){
var ...
0
votes
1answer
286 views
tinymce saving issue - PHP
VIDEO OF PROBLEM: http://www.youtube.com/watch?v=Y6RZHMQueDc&feature=youtu.be
When i press submit form button, I call onsubmit method that sends the data off with ajax (async false).
On return ...
1
vote
0answers
112 views
multiple tinymces in colorbox
I'm writing an inline CMS where content is edited by admins by hitting 'edit' buttons on the front end.
I need web forms containing multiple tinymces to open in a lightbox and need an elegant ...
1
vote
1answer
996 views
load page with tinymce (AJAX)
Im not having problem with loading the page using jQuery but when I load the page with textarea that should have tinymce dont show.
$.ajax({
type: "POST",
url: 'textarea.php',
data: {data: info},
...
2
votes
1answer
573 views
How to load tinymce text area via ajax
I have this tinymce text area which is using Ajax to call it and call the content from the database
<form class="form">
<table cellspacing="20">
<tr>
...
0
votes
1answer
391 views
Loading tiny_mce.js with Ajax and initiate TinyMCE
I'm trying to load tinyMCE with Ajax, the reason is that I don't want every visitor of the needing to load tinyMCE.
This is the code I'm using
$.ajax({
type: "POST",
...
3
votes
1answer
464 views
Firefox and TinyMCE 3.4.9 won't play nice together
I've submitted a bug to the tinyMCE people, but i'm hoping someone else has come across this and has a suitable workaround.
Here's the situation:
I've got a form with a tinyMCE control that i load ...
1
vote
1answer
315 views
TinyMCE triggerSave() command - is there a performance penalty?
It appears that in order to make TinyMCE work with an ASP.NET AJAX website, inside an UpdatePanel, that you must call something like this to cause TinyMCE to "save" the contents of the TinyMCE editors ...
1
vote
1answer
398 views
Load html files in TinyMce
I have this:
<textarea name="content"></textarea>
and in javascript code in the same aspx file I call init to tinyMce.
I have html file which is in the same folder as this aspx file. ...
2
votes
1answer
624 views
Loading tinymce dynamically
When tinymce is in head, and loads before dom, all is ok. But if i'll try to load the javascript with ajax(jquery.getScript()) it does not work.
I'm initalizing tinymce when user clicks the content ...
1
vote
0answers
212 views
tinyMCE (jquery version) grayed out and not working
I am working on expanding a home-made CMS. This CMS relies on jquery and jqueryUI for the most part. I was trying to switch from my home made and some how limited WYSIWYG editor to the very powerfull ...
1
vote
1answer
590 views
onevent on f:ajax causes model to not getting updated
I've added TinyMCE on a website (JSF-2, Tomcat 7, Mojarra 2.1.6). When a user clicks on a 'refresh' button the html text inside the editor is parsed and printed somewhere else on the page.
I have to ...
3
votes
1answer
576 views
wp_editor(), how to fetch content with jQuery
I got a wordpress page where users can add posts from the front_end. For this i use the WP_editor() function.
When I was trying the functions just plain in a new wordpress page I could just use
...
5
votes
1answer
280 views
setTimeout(f,0) equivalent? why does it solve cross-browser issues?
The following method:
Init: function (selector, settings)
{
setTimeout(function()
{
var s =
{
width: '100%',
script_url: ...
1
vote
4answers
2k views
TinyMCE not working in http request xhr ajax generated page
So i I have a page that contains links that call an httpRequest. The request calls a php file that grabs data from mysql and pre populates a form which is then returned to the browser/webpage. My ...
0
votes
1answer
379 views
TinyMCE listboxes and menus stay open after page reopening with Ajax
I have my webapplication in which I open some popup pages in a colorbox popup (http://jacklmoore.com/colorbox/)
In one of these popups I have to load a page with my TinyMCE installation, and I've ...
1
vote
1answer
218 views
Adding TinyMCE instances using ajax - Grails
I have a page when user can add 0 to N TinyMCE editors that need to have some div soup around it.
I have the html code in a gsp _template because it is more then a few lines and I didn't want to ...



