TinyMCE / WYSIWYG for dhtmlxScheduler event details editor

Great Plugin dhtmlxScheduler.

I attempted to install tinyMCE as an editor to convert tags in event details window.

I included the jScript library

I initialized TinyMCE

I verified using firebug that tag is created,
but they are not being converted.

Is there an example of WYSIWYG in dhtmlxScheduler??
I search the forums with no success.
I read that creating a custom editor is possible, but no examples of how to do this for converting the tag and making it availble to TinMCE init jscript.

Can be done through custom form_block.
Check the attached sample.
scheduler_tinymce.zip (728 KB)

Thankyou,

The following sample code for field declarations, example…

scheduler.config.lightbox.sections=[
{name:“description”, height:50, map_to:“text”, type:“textarea” , focus:true},
{name:“description”, height:200, map_to:“details”, type:“mce” , focus:true},
{name:“time”, height:72, type:“time”, map_to:“auto”}
];

is generated automatically by the Wordpress dhtmlxSchedulerConfigurator.php and other support .js files.

Where do I configure the “Category Type” dropdown to add the “mce” editor type
In the Wordpress GUI configuration tool, so that I can change specific dropdowns to use this editor type, when the ‘Save Changes’ button is clicked.

This information is stored in the DB and dynamically loaded / rendered.

Thanks

I was able to successfult modify the Wordpress Plugin to allow for an additional type of mce.
If anyone wants to know the files that needed to be modified…let me know.

Thanks again for your great work.