Questions & Comments
You must be logged-in to vote. Log-in to your account or register now.
-
2 months ago
Seems there is an issue on mobile devices. Can you confirm if this can be fixed? No editor functions show up
-
Arnold Simha
Developer
2 months ago
Currently TinyMCE not supporting mobile devices:
http://www.tinymce.com/forum/viewtopic.php?id=22209
-
-
Arnold Simha
Developer
1 year ago
It's very simple. Set the save button to do what ever you want:
saveButton: {
title: "Save Content",
image: 'images/ok_small.png',
onclick: function (ed) {
var editorContent= ed.getContent();
//save the content in database
}
}-
License holderSingle Site License
1 year ago
Hello,
Thank you for your answer.
In fact, I thought of being able to make like this:
saveButton: {
title: "Save Content",
image: 'images/ok_small.png',
onclick: function (ed) {
var content = $('#editable').html();
$.ajax({
url: 'saveToDb.php',
type: 'POST',
data: {
content: content
}
});
}
}
saveToDb.php would have all the codes necessary to record the data in my database.
It would be also easier for me to thus protect script...
Do you think that it is possible?
Thanks again!
Mick -
Arnold Simha
Developer
1 year ago
Of course. You need to remove the editor and then save the data:
saveButton: {
title: "Save Content",
image: 'images/ok_small.png',
onclick: function (ed) {
//remove editor
$(this).data("inlineTinyMCE").removeEditor(ed);
//get the data from html
var content = $('#editable').html();
$.ajax({
url: 'saveToDb.php',
type: 'POST',
data: {
content: content
}
});
}
} -
Arnold Simha
Developer
1 year ago
The component has been tested on many environments without any errors.
-
License holderSingle Site License
1 year ago
Hello,
1) I have an error message with IE8:
Message: No valid argument.
Line: 1
Character: 46713
Code: 0
URI: tiny_mce/tiny_mce.js
2) I would like to also use my version of TinyMCE 3.5.x.
But, impossible to obtain the bars of navigation (icons) with this version.
Is it necessary to modify something?
Is it necessary to use TinyMCE 3.5.0.1 or TinyMCE 3.5.0.1 jQuery package?
Thank!
Mick -
License holderSingle Site License
1 year ago
I found for 2.
I added the folder default_inline in the folder skins.
But, I always have the error message in IE8.
With this version the message is:
Message: No valid argument.
Line: 1
Character: 61584
Code: 0
URI: tiny_mce/tiny_mce.js
An idea?
Thanks again!
Mick -
Arnold Simha
Developer
1 year ago
The issue was fixed. Try to download again.
Good luck and thank you for buying
-
-
License holderSingle Site License
1 year ago
Hello,
Your script is interesting!
But, is there an example to record the data in a database?
Is it necessary to use a URL in saveButton (url:myurl.php) ?
Thank you for your answer.
Mick



