Uploading and downloading files
Platform provides a series of ways to manage files to upload, preview, download, described as follows.
Built-in upload/preview/download feature, at column level
It is possible to use a specific column of a grid to attach a file to each grid row. When clicking on the cell, a popup window is shown to manage the upload, download, preview, delete of a file; these operations inherit the authorizations at grid level: if the current user is enabled to insert a row to a grid, uploading operation is also allowed; same for the other operations.
Built-in upload/preview/download feature, at control level
It is possible to use a specific control of a form panel ( a button) to attach a file to a specific record (form content). When clicking on the button, a popup window is shown to manage the upload, download, preview, delete of a file; these operations inherit the authorizations at form level: if the current user is enabled to insert data in the form panel, uploading operation is also allowed; same for the other operations.
Client-side javascript function
When clicking on the cell, a popup window is shown to manage the upload, download, preview, delete of a file, independently of the current window shown in the UI.
The syntax for this function includes the following arguments:
title; can be null, in that case, a default title is shown
enabled true: upload button is enabled, false: upload button is disabled
fileName file name to set in the input field; if it is not empty, then a “Download” and “Preview” buttons are shown too
dirId directory id on the server side where saving the file to upload
beforeUploadCallback callback function invoked just before the uploading; format:
afterUploadCallback callback function invoked after the uploading; format:
errorOnUploadCallback callback function invoked in case of errors on uploading; format:
settings - optional javascript object containing additional settings, expressed as attribute-value:
acceptMimes: a string containing a list of mime types, separated by comma; example: "image/jpg,image/png" - used to filter the content to upload
encriptAttachments: true|false - specify if content to upload must be encripted on the server side; in such a case, content must be undecripted when reloading it leater
panelId: ... // panel id related to this upload process
Through this arguments you can for instance show a modal dialog prompting the user to select a local file and upload it in the specified folder identified by dirId. After that, you could use the same modal dialog to show a previously uploaded file, through the “Download” or “Preview” buttons, in case you have filled the “fileName” arguments.
Example
Example
Upload a file, starting from a custom window
In case you need to customize completely the content of the popup window hosting your file to upload, you can define a Platform window containing a Platform Editable Panel, where you can include any type of input fields. The only constraint is to include also a File Type Field, available only with Editable Panels.
Optionally, you can fill in the advanced property File Type, with a list of allowed mime types separated by a comma (e.g. "image/jpg,image/png").
Such a special field is composed of a readonly text field containing the file name to upload and a button used to open the operating system file selection window to select the file to upload. These field provides CSS classes having this format:
x-form-text x-form-field fileuploadfield-<panelid>-<fielAttribute> x-form-file-text x-form-invalid
x-btn x-form-file-btn x-form-file-btn-fileuploadfield-<panelid>-<fieldAttribute> x-btn-noicon
The first CSS class can be used to customize the readonly text field, whereas the second one to customize the button.
Once setting up the popup window, you can add a component event to a button, in order to start the uploading process, through the uploadFileFromForm function.
You can include in this process also additional information to pass forward to the server-side. More precisely, the upload process consists of:
required input controls checking: in case there is one of more input fields declared mandatory and not filled, the process is interrupted and a warning message is prompted
the selected file is sent to the server and saved in the specified directory id; at the same time, additional information is also passed forward to the server, where a server-side javascript action is invoked as long as the file has been saved and all input data is passed forward to this action
Syntax
Argument | Description |
formPanel | Editable panel variable (e.g. formPanelxxx), used to extract all input values |
actionId | id of the server-side javascript action to invoke; this action would receive in input all field values, through the "vo" input variable, where each field value is indexed by its attribute name: { inputfieldAttributeName1: "....", inputfieldAttributeName2: "....", ... fileName: "...", // original file name appId: "...", actionId: ..., dirId: ..., type: "FILE_PATH_FIELD", applicationId: "...", unzip: "N", optionalFileName: "..." // file name renamed } |
dirId | directory id where the file must be saved; such a directory can be a Platform server directory or a bucket in GCS |
settings | optional: can be null; if set, it is a js object containing additional settings: |
additionalSettings | optional: can be null: if set, it contains pars/vals to pass forward to the server-side js action |
Settings can contain something like:
settings: { autoDefineUploadFileName: true|false, // true to auto-rename file according to this policy: a.pdf -> a_12345566.pdf beforeUploadCallback: function({ filename: "..." ) {...}, // callback used to define an ad hoc file renaming policy afterUploadCallback: function({ success: true|false, message: "...", fileName: "..." }) {...}, // callback invoked at the end of the uploading process errorOnUploadCallback: function({ error: "..." }) {...} // callback invoked in case of errors during the uploading process } |
Example of code which can be included in the client-side javascript action bound to a button click event, in order to start the uploading process:
Download an uploaded file
Once a file has been uploaded, the easiest way to download it is through the grid/form panel from which it has been uploaded (see first section in this web page).
Anyway, it is possible to customize the download process and attach it in any part of the application UI, through the client-side javascript function provided by Platform:
You need to provide to this function the file name for the file to download and its location.
Examples:
Note: pay attention in case you are storing files in GCS; in such a scenario, the directory id only identifies the bucket name, not the relative path of the file, which must be saved along with the file name itself.
Preview an uploaded file
Once a file has been uploaded, the easiest way to show it again is through the grid/form panel from which it has been uploaded (see first section in this web page).
Anyway, it is possible to customize the preview process and attach it in any part of the application UI, through the client-side javascript function provided by Platform:
You need to provide to this function the file name for the file to download and its location.
Examples:
Note: pay attention in case you are storing files in GCS; in such a scenario, the directory id only identifies the bucket name, not the relative path of the file, which must be saved along with the file name itself.
Note: not all file formats can be showed as a preview; it depends on the browser plugins/extensions installed; it can work for most of the image formats, PDF (if Acrobat reader has been installed), text files, but it is unlikely that it can work for Office documents.
Last updated