javascript - html input type=file -- Select a file from iCloud -
i'm developing cordova / phonegap-based application has embedded text editor. access selected files, i'm having user browse mobile device using html <input type=file>
element:
<div class="control-row"> <label for="selfile" class="topcoat-button">{{t 'view.lblselect'}}</label> <input type="file" value="" id="selfile" multiple> </div>
on ios, however, clicking on input element brings photos instead of allowing me pick icloud documents. there way select icloud documents cordova / phonegap?
the attr "multiple" not compatibile icloud file, can try remove , work fine,but can select 1 file of couse
<div class="control-row"> <label for="selfile" class="topcoat-button">{{t 'view.lblselect'}}</label> <input type="file" value="" id="selfile" > </div>