Page 1 of 1

Larger WYSIWYG Editor

Posted: Wed 1. Sep 2004, 21:05
by bluwu
I'd like a larger WYSIWYG editor. Maybe even if it could detach or maximize to the size of the screen page. The scrolling is not fun.

Posted: Mon 13. Sep 2004, 13:27
by Jari
I want the same :D I hate to use the scrollers when I work :? Do anyone have a solution to make the editor much wider ?

Posted: Mon 13. Sep 2004, 13:30
by bachi
this function is aviable in htmlArea.

Normaly you just have to activate it.

Posted: Tue 21. Sep 2004, 11:00
by Jari
How do I do that ?

Yes please

Posted: Wed 12. Jan 2005, 14:57
by buddha
Whare ??

Posted: Fri 21. Jan 2005, 08:04
by FN-Media
Öffne im Verzeichnis include/inc_lib die Datei "htmlarea.editor.inc.php".

Code: Select all

36 function initEditor (edit_field, cw, ch) {
37	var config = new HTMLArea.Config(); // create a new configuration object having all the default values
38	if(cw == '') { cw = '440px'; }
39	if(ch == '') { ch = '550px'; }
40	config.width = cw;
41	config.height = ch;
Da kann man die Größe einstellen.