Sorry for my bad english. I tried to explain the problems I encountered. I'm using asp.net MVC5. I want to integrate the ckfinder to tinymce4. This code works, but only successful in one area. How can I integrate all areas.
tinymce.init({
...
file_browser_callback: function() {
var finder = new CKFinder();
finder.selectActionFunction = SetFileField;
finder.popup();}
...
});
function SetFileField(fileUrl) {
jQuery('#mceu_47-inp').val(fileUrl);
}