FckEditor regler Height et width

Résolu/Fermé
ygalr22 Messages postés 23 Date d'inscription jeudi 20 décembre 2007 Statut Membre Dernière intervention 24 septembre 2008 - 13 janv. 2008 à 19:10
 swisshawk - 15 avril 2008 à 11:03
Bonjour,

Voila, je vien de tester fckeditor, supers appli mais je ne parviens pas a regler la largeur et la hauteur de l'éditeur dans ma page web...

Voici le code :

<script type='text/javascript' src='fckeditor/fckeditor.js'></script>
<script type='text/javascript'>
window.onload = function()
{
var oFCKeditor1 = new FCKeditor( 'TxtTour' ) ;
oFCKeditor1.ToolbarSet = 'Basic' ;
oFCKeditor1.BasePath = 'fckeditor/' ;
oFCKeditor1.ReplaceTextarea() ;
oFCKeditor2.ToolbarSet = 'Basic' ;
oFCKeditor2.BasePath = 'fckeditor/' ;
oFCKeditor2.ReplaceTextarea() ;

}
</script>


<textarea wrap='hard' xml:lang='fr' class=Area name='TxtTour'OnFocus='VerifTour()';>
</textarea>


Voila j'air rien touché dans les autre fichiers de fckeditor ormis la barre d'outil qui fonctionne

Help please!

3 réponses

oFCKeditor1.Height = "200px" ;
oFCKeditor1.Length = "400px" ;

Essaie donc ^^
1
ygalr22 Messages postés 23 Date d'inscription jeudi 20 décembre 2007 Statut Membre Dernière intervention 24 septembre 2008 2
13 janv. 2008 à 20:24
up!
0
Salut, regarde la doc d'FCK, il y a 2 attributs de réglage des largeur et hauteur ;)
0