2012-09-24 49 views
1

你能告訴我如何設置makedroppane函數的選項,我找不出來。這是我的示例代碼。filepicker.io向makedrop窗格添加選項

我知道它需要是一個字典數組,但我不知道要把它。在這個例子中它只有[0]。在選項設置的實際文檔中的一個例子會很好。

filepicker.setKey('###########'); 
var options = { 
    "multiple": true 
}; 
filepicker.makeDropPane($('#exampleDropPane')[0],options, { 
    dragEnter: function() { 
     $("#exampleDropPane").html("Drop to upload"); 
    }, 
    dragLeave: function() { 
     $("#exampleDropPane").html("Drop files here"); 
    }, 
    progress: function(percentage) { 
     $("#exampleDropPane").text("Uploading ("+percentage+"%)"); 
     $("#pb").css('width', (percentage)+'%'); 
    }, 
    done: function(data) { 
     console.log(data); 
     alert('done'); 
    } 
}); 
+0

BTW更多信息:他們收取的錢,就應該提供支持。 – eckes

回答

1

看起來像你只需要你的選項合併成一個圖:

filepicker.makeDropPane($('#exampleDropPane')[0], { 
    multiple: true, 
    dragEnter: function() { 
    // $("#pb").addClass('show'); 
    $("#exampleDropPane").html("Drop to upload"); 
    }, 
    dragLeave: function() { 
    //  $("#pb").addClass('show'); 
    $("#exampleDropPane").html("Drop files here"); 
    }, ... 
    }); 

語法filepicker.makeDropPane(dropPane, options) - 在https://developers.filepicker.io/docs/web/#local-drop

+0

創建解決它。我知道這可能很簡單,你的文檔中的例子可以清楚地說明。 – chrisjmccreadie

+0

太棒了!您可能希望將答案標記爲未來的搜索者 – brettcvz