Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
How i can get file size on client for all files added in AsyncUpload before upload?
And how i can view the upload progress of ALL files together as a progress bar in the upload control?
<
telerik:RadAsyncUpload
runat
=
"server"
ID
"upload"
OnClientFileSelected
"fileSelected"
></
>
script
function fileSelected(sender, args) {
var size = args.get_fileInputField().files[0].size;
}
</