FckEditor regler Height et width

Résolu
ygalr22 Messages postés 23 Date d'inscription   Statut Membre Dernière intervention   -  
 swisshawk -
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

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

Essaie donc ^^
1
ygalr22 Messages postés 23 Date d'inscription   Statut Membre Dernière intervention   2
 
up!
0
Kahl
 
Salut, regarde la doc d'FCK, il y a 2 attributs de réglage des largeur et hauteur ;)
0