ownCMS WYSIWYG Editor (Version 2.0) coded with Mootools Version 1.2

Features:

Enjoy and have Fun with this really cool Editor!
Great Thanks to Valerio and friends for this nice library!

First example: 3 Textarea in one Form Tag

Loading Function: Now you can configure yourself your Editor


	['undo','redo','bold','underline','italic','cut','copy','paste','editItem','strike',
	'forecolor','backcolor','justifyleft','justifycenter','justifyright','justifyfull',
	'orderedlist','unorderedlist','outdent','indent','subscript','superscript','special',
	'table','makeBig','Smilies','clear','print','help','fontname','fontsize','formatblock'];

Example:
mySelFunction=['bold','italic','underline']
new HtmlArea('hello',{form:'FormHello',width:'400px',height:'100px',align:'bottom',toolbar:mySelFunction,ViewSource:true});

Parameters:
	        form: '',
            width: '100%',
            height:'',
            align:'top',
            inlineEdit:false,
            toolbar:'',
            ViewSource:true,
            picupload :false,
            uploadfolder :'',
            title:'ownCMS WYSIWYG Editor',
            lang:'de',
            onReadyLoad: Class.empty
 

Example with LangChoose English


Full Example



Full Example

Second Example: 1 Textarea in one Form Tag

Es können gezielt Textareas angesprochen werden

new HtmlArea('hello3',{form:'FormHello1',width:'600px',height:'200px',toolbar1:true,toolbar2:false,toolbar3:false,ViewSource:true});

Full Example









Third Example: InPlaceEdit

Es muss nur die ID (inplaceEdit) und die Option inlineEdit auf true gesetzt werden und über die save() Funktion bekommt man den Inhalt wieder in das Feld zurück

new HtmlArea($('inplaceEdit'),{inlineEdit:true,width:'600px',height:'400px'});