Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working on a plugin which incorporates an image gallery with TinyMCE. Roughly it works like whenever I press on of the images (which are situated in a div just below my editor) the id of the clicked image will get picked up with ajax and sent to a function that injects this code into TinyMCE:

<img src="<?php echo $imgsrc[0]; ?>" width="<?php echo $imgsrc[1]; ?>">

It all works like it should, however I want to be able to track when this happens in the editor. I use onEvent like so:

ed.onEvent.add(function(ed, e) {
         console.debug('Editor event occured: ' + e.target.nodeName);
});

It won't pick up any event at all, is there someway to make TinyMCE aware of what just happened?

DEMO

Thanks.

share|improve this question
when do you call this? – Thariama Nov 15 '12 at 15:36
@Thariama How do you mean? The img src injection is called when the image is clicked. The onEvent handler notices everything that happens in the editor besides my injection. I.E. if I move the cursor och select anything it'll pop up in the console, but not the img injection. – INT Nov 15 '12 at 16:34
can you provide an online example (tinymce fiddle) ior provide some more code? – Thariama Nov 16 '12 at 8:51
@Thariama Ok, here it is: fiddle.tinymce.com/mvcaab – INT Nov 16 '12 at 12:27
+1 for the fiddle – Thariama Nov 16 '12 at 13:07

1 Answer

up vote 1 down vote accepted

You do not get any output because you use setContent on the selection - not on the editor instance. And this is a big difference because there is no listener listening for this to fire.

share|improve this answer
Is there a way for me to add a listener so I can know when content (in this case an image) is inserted? setContent on the selection is important because I want the image to be inserted where the cursor is. – INT Nov 16 '12 at 13:24
you know when it gets inserted (it is here : tinyMCE.activeEditor.selection.setContent(data);). isn't it suffcient to call desired code right after this line of code? – Thariama Nov 16 '12 at 14:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.