RadAsyncUpload can use both RadProgressArea and its own Inline Progress in order to measure the progress of a given upload. There is a separate inline progress indicator for each and every file being uploaded, effectively providing more concise and compact progress than RadProgressArea. It is up to the developer to choose which one they want to use.
RadProgressArea automatically displays a progress dialog when files are uploaded. In addition, you can use it as a progress dialog for any other long process by supplying custom progress information using the server-side API. The progress area features:
- Status information - includes progress bar and count for the uploaded bytes; the name of the file being currently uploaded; the elapsed and the estimated times

- Custom progress with templates – RadProgressArea allows you to customize its content and style through templates. For example you can rearrange the progress elements or create your own progress bar.

- Support for <input type=file> elements - RadProgressArea can be used with the standard <input type=file> elements without the presence of RadUpload on the page. Developers may find this scenario useful when they want to create a completely custom upload form user interface.
Top