api - How to implement multiple Dropbox Javascript Choosers on a page? -



api - How to implement multiple Dropbox Javascript Choosers on a page? -

dropbox's official page teaches how implement single chooser, doesn't teach how implement multiple choosers on page.

is possible that?

yes, possible. createchoosebutton method can used multiple times create multiple chooser buttons can set wherever want. e.g.:

var button = dropbox.createchoosebutton(options); document.getelementbyid("container").appendchild(button); var button2 = dropbox.createchoosebutton(options2); document.getelementbyid("container").appendchild(button2);

javascript api dropbox

Comments

Popular posts from this blog

formatting - SAS SQL Datepart function returning odd values -

c++ - Apple Mach-O Linker Error(Duplicate Symbols For Architecture armv7) -

php - Yii 2: Unable to find a class into the extension 'yii2-admin' -