Hi,
I am having following unexpected behavior:
After canceling request when a file is too big, when I am selecting another file, args._progressData.RadUpload.RequestSize is from previous file and not from one which I just selected.
Code:
function CheckUploadedImageFilesSize(progressArea, args)
{
if(args._progressData.RadUpload.RequestSize > maxSize)
{
progressArea.cancelRequest();
}
}