User defined variables passed to the application from the query string.
| tokenRequestURL | URL that the token request is sent to. The token allows for authentication on file upload. Defaults to “”. If left blank, no token will be requested. |
| flashCSS | External compiled CSS file to load. If blank will go with defaults. Defaults to “”. |
| removeFileURL | URL to request removal of file on the server. Defaults to http://127.0.0.1:3000/no_model_demo/remove_files. |
| uploadURL | URL that file is uploaded to. Defaults to http://127.0.0.1:3000/no_model_demo/upload_file. |
| maximumUploads | Maximum number of uploads in one session. Defaults to 10,000. |
| maximumTotalBytes | Maximum total bytes that can be uploaded in a single session. Defaults to 10000000000. |
| maximumFileBytes | Maximum file size of each individual file. Defaults to 10000000000. |
| maximumFilesOnServer | Maximum number of files on server. Defaults to 10000000000. |
| maximumBytesOnServer | Maximum bytes on server. Defaults to 10000000000. |
| mainPanelTitleText | User definable text of the Title of the main panel. Defaults to “File Management”. |
| uploadFilesButtonText | User definable text of the Upload Files button. Defaults to “Upload File(s)”. |
| removeFilesButtonText | User definable text of the remove files button. Defaults to “Remove File(s)”. |
| progressBarDefaultLabelText | User definable default text of the progress bar. Defaults to “Upload Progress”. |
| maximumFileSizeAlert | User definable text of maximum file size error message. Defaults to “ is larger than the maximum file size.”. |
| maximumUploadsErrorMessageText | Maximum uploads exceeded error message. Defaults to “You’ve reached the maximum number of uploads for this session.”. |
| maximumUploadsErrorTitleText | Maximum uploads exceeded error title. Defaults to “Max Uploads Reached!”. |
| uploadFileErrorMessageText | Text of upload file error alert. Defaults to “Unable to upload file.”. |
| uploadFileErrorTitleText | Text of upload file error alert title. Defaults to “Error!”. |
| uploadRejectedErrorMessageText | Text of upload rejected error message. Defaults to “ was REJECTED by the server. Check the file type or size.”. |
| uploadRejectedErrorTitleText | Text of upload rejected title. Defaults to “Error!”. |
| uploadIOErrorMessageText | Text of IO Error message. Defaults to “Upload failed: IO Error has occurred.”. |
| uploadIOErrorTitleText | Text of title of IO Error Message. Defaults to “Error!”. |
| maximumAllowedFilesErrorMessageText | Maximum number of files that are allowed to exist on the server exceeded error message text. Defaults to “Maximum number of allowed files has been exceeded.”. |
| maximumAllowedFilesErrorTitleText | Maximum number of files that are allowed to exist on the server exceeded error title text. Defaults to “Error!”. |
| maximumBytesOnServerErrorMessageText | Maximum number of bytes that are allowed to exist on the server exceeded error message text. Defaults to “Maximum number of bytes allowed on server has been exceeded.”. |
| maximumBytesOnServerErrorTitleText | Maximum number of bytes that are allowed to exist on the server exceeded error title text. Defaults to “Error!”. |
| applicationToken | A token that can be sent with the upload request to further identify the application. Could be used to identify a model. Defaults to “”. |
| fileNameHeader | The default header of the file name column. Defaults to “File Name”. |
| uploadProgressHeader | The default header of the Upload Progress column. Defaults to “Progress”. |
| finishedText | Text that displays in the list when a file is finished. Defaults to “Finished”. |
| queuedText | Text that displays when a file is queueud. Defaults to “Queued”. |