Larger WYSIWYG Editor

Use GitHub to post feature requests for phpwcms.
Locked
bluwu
Posts: 3
Joined: Sun 22. Aug 2004, 15:08

Larger WYSIWYG Editor

Post 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.
Jari
Posts: 107
Joined: Thu 15. Apr 2004, 11:31
Location: Sweden
Contact:

Post 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 ?
bachi
Posts: 308
Joined: Fri 6. Aug 2004, 17:52
Location: Western Styria, AUSTRIA
Contact:

Post by bachi »

this function is aviable in htmlArea.

Normaly you just have to activate it.
Jari
Posts: 107
Joined: Thu 15. Apr 2004, 11:31
Location: Sweden
Contact:

Post by Jari »

How do I do that ?
buddha
Posts: 13
Joined: Sun 12. Sep 2004, 14:28
Contact:

Yes please

Post by buddha »

Whare ??
FN-Media
Posts: 67
Joined: Thu 13. Jan 2005, 13:23

Post 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.
bye Rene
Locked