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

hide list of files

1 Answer 85 Views
AsyncUpload
This is a migrated thread and some comments may be shown as answers.
Sigma
Top achievements
Rank 1
Sigma asked on 07 Dec 2012, 11:18 AM
1)hide the list of files that shown above fakeinput? 

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 07 Dec 2012, 11:23 AM
Hi Sigma,

Try the following code snippet to achieve your scenario.

CSS:
<style type="text/css">
        .ruUploadProgress, li .ruCancel, li .ruRemove
        {
            visibility:hidden;
        }
        li.ruUploading
        {
            height:1px;
        }
</style>

ASPX:
<telerik:RadAsyncUpload runat="server" ID="RadAsyncUpload1" OnClientFileSelected="selected">
</telerik:RadAsyncUpload>

JS:
<script type="text/javascript">
      function selected(sender, args) {
                $telerik.$(args.get_row()).addClass("ruUploading");
            }
</script>

Hope this helps.

Regards,
Princy.
Tags
AsyncUpload
Asked by
Sigma
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or