Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 8 Next »

Provides feedback to the application on a file upload transaction.

Promptable? NO
Possible Values: data structure response field
Bindable? YES
Products: ProfoundUI 

This property is bound to a data structure response field which provides the following information to the application after a file upload transaction:

  • How many files were uploaded.
  • The directory files were uploaded to.
  • The name of each uploaded file.

The size of the response field must be calculated as follows:

256(n + 1) + 3

Where "n" is the maximum number of files that can be uploaded, as specified in the "number of files" property. For example, if the widget is configured to allow for 10 files, then the response field length should be given as 2819.

The data structure should be defined in the application as follows:
 

Fixed Format
D UPLOADINFO      DS                  Qualified
D  NumFiles                      3S 0
D  Directory                   256A
D  Files                       256A   Dim(n)
**Free
DCL-DS UPLOADINFO QUALIFIED;
    NUMFILES ZONED(3:0);
    DIRECTORY CHAR(256);
    FILES CHAR(256) DIM(n);
END-DS UPLOADINFO; 

 

The name of the data structure in the application must match exactly to the field bound to this property. The "Files" subfield must be dimensioned "n" times, which should be the same value used to calculate the response field length and the same value used for the "number of files" property.

The "NumFiles" subfield will contain the number of files uploaded in the current transaction. This value can be between 0 and "n". The "Directory" subfield will contain the name of the IFS directory where the files were uploaded. The "Files" array subfield will contain the names of all files uploaded, in order of their selection in the file upload widget.

An example of using the file upload response can be found in the example program in library PUISAMPLES. The display file is member UPLD001D in file QDDSSRC. The RPG code is member UPLD001R in file QRPGLESRC.

  • No labels