uploader fileDialog on mobile device

Hello,

What kind of file browse dialog screen does the uploader widget display when using webix on an android phone? We have an application could run on your phone and that would require attaching files that are on your phone (mostly photos but also other (pdf files downloaded from email attachments).

Thanks,
Pieter

Hello @Pieter.

What kind of file browse dialog screen does the uploader widget display when using webix on an android phone? We have an application could run on your phone and that would require attaching files that are on your phone (mostly photos but also other (pdf files downloaded from email attachments).

The fileDialog() will prompt you to select a file from your device and will proceed to add it to the uploader component (the file will also get uploaded automatically, if autosend is set to true). As far as I can see, this action does also work on Android devices - you will need to select an app via which the file will be chosen (i.e. a file browser app, or your gallery), afterwards you will simply need to choose the file itself.

This can be seen in the following example: https://snippet.webix.com/m/8dc01c50 (can be opened on a mobile device). While this example doesn’t call the fileDialog() method explicitly, it is still being called by the uploader component by default (upon clicking the “Upload file” button in this case).

Great. Thanks for the Info Dzmitry.