Hello Guys!
I would like to perform some after initialization actions in the CKEditor and therefore I pass the callback method (config.js):
However, it's never being invoked.
Probably you know, how can I make it working?
Sincerely,
Andrii
I would like to perform some after initialization actions in the CKEditor and therefore I pass the callback method (config.js):
CKFinder.customConfig = function (config) {
config.callback = function (api) {
alert("---");
}
};
However, it's never being invoked.
Probably you know, how can I make it working?
Sincerely,
Andrii

Re: Callback method is not called
var finder = new CKFinder(); finder.callback = function( api ) { alert('zzz'); }; finder.basePath = '/ckfinder/'; finder.create();Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: Callback method is not called