This is a migrated thread and some comments may be shown as answers.

Hide the progress bars which appears for each image uploaded

1 Answer 114 Views
AsyncUpload
This is a migrated thread and some comments may be shown as answers.
Ashan
Top achievements
Rank 1
Ashan asked on 17 Oct 2013, 05:22 AM
Hi

I need to hide the progress bars which appear for each images after saving the image to the TemporaryFolder folder. Im hoping do it in the OnClientFilesUploaded event. Can anyone have solution for how to hide the progress bars?

Thanks
Ashan

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 17 Oct 2013, 10:08 AM
Hi Ashan,

You can try the following JavaScript in the OnClientFileUploading event of the RadAsyncUpload to hide the progress bars.

JavaScript:
<script type="text/javascript">
    function OnClientFileUploading(sender, args) {
        $telerik.$(".ruFileProgressWrap").hide();
    }
</script>

Thanks,
Shinu.
Tags
AsyncUpload
Asked by
Ashan
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or