Explanation
DEXTUploadX5 provides four types of progress windows.
When creating a component with the dx5.create function, you can set the progressType property value to '0', '1', '2', or '3'.
// Use '1' progress window. The default value is '0'.
dx5.create({
id: "dext5", parentId: "dext5-container", ..., progressType: "1"
});
Example
|
|
|
When a file is uploaded in an ORAF method, status values cannot be separately displayed in individual files. For that reason, the progress window of '1', '2', and '3' does not display numerical values in individual units. Therefore, it is recommended to use '0' only in ORAF. In case of OROF/EXTS/AWSS3 method, '0', '1', '2', and '3' progress windows are all available. If you change the progress window, the page reloads and the progress window changes.
|