Please add additional selecFoldertActionData and selectFoldertActionFunction in core.
Because ckf has bug in ie with popup (upload) and ckfinder_v1 dont have addPlugin and extraPlugins...., iI tried to do it myself (insert in ckfinder.html), but look a little ugly
var ckfinder = new CKFinder( config );
CKFinder.addPlugin( '_selecFolderActionData_', {
appReady : function( api ) {
var menuItem = { label : 'Select Folder', command : 'aFAD'};
api.addFolderContextMenuOption( menuItem, function( api, folder ){
aAF=config.selectActionFunction;
sAD ={'selectActionData': config.selectActionData };
aAF.call(this,folder.getUrl(),sAD)
self.close();
});
}
});
ckfinder.extraPlugins = '_selecFolderActionData_';
ckfinder.replace( 'ckfinder', config );
Thanks.
Because ckf has bug in ie with popup (upload) and ckfinder_v1 dont have addPlugin and extraPlugins...., iI tried to do it myself (insert in ckfinder.html), but look a little ugly
var ckfinder = new CKFinder( config );
CKFinder.addPlugin( '_selecFolderActionData_', {
appReady : function( api ) {
var menuItem = { label : 'Select Folder', command : 'aFAD'};
api.addFolderContextMenuOption( menuItem, function( api, folder ){
aAF=config.selectActionFunction;
sAD ={'selectActionData': config.selectActionData };
aAF.call(this,folder.getUrl(),sAD)
self.close();
});
}
});
ckfinder.extraPlugins = '_selecFolderActionData_';
ckfinder.replace( 'ckfinder', config );
Thanks.