Problème CKEditor append
Fermé
Xidy
Messages postés
82
Date d'inscription
mardi 26 août 2008
Statut
Membre
Dernière intervention
19 juillet 2014
-
6 sept. 2013 à 16:23
Xidy Messages postés 82 Date d'inscription mardi 26 août 2008 Statut Membre Dernière intervention 19 juillet 2014 - 10 sept. 2013 à 11:54
Xidy Messages postés 82 Date d'inscription mardi 26 août 2008 Statut Membre Dernière intervention 19 juillet 2014 - 10 sept. 2013 à 11:54
2 réponses
Xidy
Messages postés
82
Date d'inscription
mardi 26 août 2008
Statut
Membre
Dernière intervention
19 juillet 2014
3
10 sept. 2013 à 11:29
10 sept. 2013 à 11:29
J'ai un peu avancé, j'ai l'instance et plus d'erreurs :
Par contre le texte en append (2 façon testées) ne marche pas que ce soit avec insertText ou insertHtml
<textarea id="lastactions" rows="4" cols="40" style="resize: none;" readonly></textarea>
<script type="text/javascript">
//<![CDATA[
CKEDITOR.replace( 'lastactions', {
extraPlugins : 'autogrow',
autoGrow_maxHeight : 400,
removePlugins : 'resize',
uiColor: '#BC1414',
toolbar: 'Custom', //makes all editors use this toolbar
toolbarStartupExpanded : false,
toolbarCanCollapse : false,
toolbar_Custom: [], //define an empty array or whatever buttons you want.
readOnly : true
});
//]]>
var editor = CKEDITOR.instances.lastactions;
editor.insertText('some text here');
editor.insertHtml( "WTF!" );
</script>
Par contre le texte en append (2 façon testées) ne marche pas que ce soit avec insertText ou insertHtml
Xidy
Messages postés
82
Date d'inscription
mardi 26 août 2008
Statut
Membre
Dernière intervention
19 juillet 2014
3
10 sept. 2013 à 11:54
10 sept. 2013 à 11:54
J'ai réussi de cette façon
Mais je ne vois pas pourquoi insertText et insertHtml ne fonctionnent pas...
<script type="text/javascript">
//<![CDATA[
CKEDITOR.replace( 'lastactions', {
extraPlugins : 'autogrow',
autoGrow_maxHeight : 400,
removePlugins : 'resize',
uiColor: '#BC1414',
toolbar: 'Custom', //makes all editors use this toolbar
toolbarStartupExpanded : false,
toolbarCanCollapse : false,
toolbar_Custom: [], //define an empty array or whatever buttons you want.
readOnly : true
});
//]]>
var editor = CKEDITOR.instances.lastactions;
//editor.setData(CKEDITOR.instances['lastactions'].getData()+"fggdf");
</script>
Mais je ne vois pas pourquoi insertText et insertHtml ne fonctionnent pas...