Skip to content Skip to sidebar Skip to footer

Html Input Type=file -- Select A File From Icloud

I'm developing a Cordova / PhoneGap-based application that has an embedded text editor. To access selected files, I'm having the user browse the mobile device by using the html <

Solution 1:

It's 2017 August Even I was facing the same problem after some research I found an exact solution for this. Go to Xcode ->Select your project -> Capabilities -> iCloud and enable it. Now it will work.

Solution 2:

The attr "multiple" is not compatibile with icloud file, you can try to remove it and it will be work fine,but you can only select one file of couse

<div class="control-row">
  <label for="selFile" class="topcoat-button">{{t 'view.lblSelect'}}</label>
  <input type="file" value=""id="selFile" >
</div>

Post a Comment for "Html Input Type=file -- Select A File From Icloud"