I'm having some issues filtering for Google Docs from the 'all doc types' view. (using ViewId.DOCUMENTS works, but i'm trying to get it to filter with other types as well)
Example...
new google.picker.View(google.picker.ViewId.DOCS).setMimeTypes("application/vnd.google-apps.document");
...does not display any regular Google Docs for me although each of the following work fine:
new google.picker.View(google.picker.ViewId.DOCUMENTS);
or
new google.picker.View(google.picker.ViewId.DOCS).setMimeTypes("application/vnd.google-apps.spreadsheet");
...
Do I not have the right gdocs mime type? Or might this be a bug?
Thanks for any assistance.