ExFileUploader

v1.0.0Control

ExSDK file uploader control for SAP UI5/Fiori applications.

Namespace
ux7.control.ExFileUploader
Extends
sap.ui.core.Control
XML tag
<ExFileUploader />
Quick Start
<VBox class="sapUiMediumMargin" width="100%">

  <ux7:ExTitle text="Varsayılan (multiple, 10MB)" level="h3" variant="section" />
  <ux7:ExFileUploader id="fuDefault" title="Dosya Yükle" multiple="true" accept="*" maxSizeMb="10" maxFiles="20" filesSelected="onFilesSelected" />

  <ux7:ExTitle text="Sadece Görsel (jpg, png, gif)" level="h3" variant="section" />
  <ux7:ExFileUploader id="fuImage" title="Görsel Seç" multiple="false" accept="image/jpeg,image/png,image/gif" maxSizeMb="5" maxFiles="1" filesSelected="onImageSelected" />

  <ux7:ExTitle text="Sadece PDF (maks 25MB, 5 dosya)" level="h3" variant="section" />
  <ux7:ExFileUploader id="fuPdf" title="PDF Doküman" multiple="true" accept="application/pdf" maxSizeMb="25" maxFiles="5" filesSelected="onPdfSelected" />

</VBox>