If I have multiple Google Drive File Pickers on one page how do I handle the callback to ensure the data is passed to the correct section?
I basically have a number of i
As Eric said use the setCallback method.
If you want to pass a parameter to a callback use an anonymous function:
.setCallback(function(data){pickerCallback(data,"MYPICKERID")})