2016-05-11 14 views
0

Ich benutze elFinder 2.1 und möchte eine JavaScript-Funktion zum Download-Ereignis hinzufügen. Dies ist, um die Downloads zu registrieren und/oder eine E-Mail zu senden.Fügen Sie eine Javascript-Funktion hinzu, um das Ereignis auf Elfinder herunterzuladen

Ich möchte die Funktion auf Doppelklick und auf die Download-Option auslösen.

Ich kann eine getFileCallback hinzufügen: Funktion (URL) {} aber ich arbeite nur auf einen Doppelklick auf die Datei.

Wo finde ich die Codierung der Download-Option? Wo sollte ich meine Funktion hinzufügen?

Vielen Dank für Ihre Hilfe.

Antwort

0
$('#elfinder').elfinder({ 
    handlers: { 
     download: function(event, elfinderInstance) { 
      elfinderInstance.log(event); // print to browser console 
     } 
    }, 
    // and your options 
}); 

// OR 

var elfinderInstance = $('#elfinder').elfinder({ 
    // your options object 
}).elfinder('instance') 
.bind('download', function(event) { 
    elfinderInstance.log(event); // print to browser console 
});