2

I am using CKFinder 3 in a single page Application, I need to detect when an image upload has been successful.

At the moment I am using createResources:after with no success.

Any idea how to solve this, I meanly need to solve this in the JS code ?

            onInit: function( finder ) {
                finder.on('createResources:after', function (event) {
                    // issue here, does not fire
                });
            }
GibboK
  • 71,848
  • 143
  • 435
  • 658

1 Answers1

8

Currently the CKFinder API up to version 3.3 doesn't have any events for uploads. There are plans to add those events in 3.4.

The createResources:after event is fired when a Resource Type is created. A resource type is simply a group of files under a root path.

jodator
  • 2,445
  • 16
  • 29
  • hi thanks for your answer, I am evaluating demo of ckFinder for our project, I have question here: http://stackoverflow.com/questions/35269039/ckfinder-how-to-get-dimension-url-and-dimension-width-height-when-choosing-an I would really appreciate your feedback :) many thanks in advance for your time. – GibboK Feb 08 '16 at 11:54
  • 2
    @GibboK OK, no problem. – jodator Feb 08 '16 at 12:24
  • Hi, we are still in the evaluation phase of ckFinder, we still have an issue related with EDIT feature, I really would appreciate your feedback and expertise on this. Please look here if you have time. Thanks in advance. http://stackoverflow.com/questions/35288396/ckfinder-edit-features-does-not-work-when-working-on-different-domain – GibboK Feb 09 '16 at 09:38