inserting values into a richtext field (CKEditor)

Hi Andre,

If I’m understanding the issue correctly, here is a solution employed by one of my fellow engineers.

Example JS Snippet:

function insertIntoEditor(text){
CKEDITOR.instances[‘YourEditorID’].insertText(text);
}

It’s possible that the default editor ID is “editor1”.

Example HTML Markup:

Event Name

I hope this puts you back in business.