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

Visibility of the AsyncUpload UI elements

4 Answers 80 Views
AsyncUpload
This is a migrated thread and some comments may be shown as answers.
Datatrek
Top achievements
Rank 1
Datatrek asked on 07 Sep 2011, 04:07 PM
How can I setting the visibility of the RadAsyncUpload UI elements? 

4 Answers, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 07 Sep 2011, 04:38 PM
Hello,

You can try setting the Visible property to False for each element

Thanks,
Shinu.
0
Datatrek
Top achievements
Rank 1
answered on 07 Sep 2011, 04:49 PM
My problem is that RadAsyncUpload do not expose the ControlObjectsVisibility property. I would apply a case like this: http://www.telerik.com/help/aspnet-ajax/upload-configuring-ui.html (but for AsyncUpload)
0
Accepted
Princy
Top achievements
Rank 2
answered on 08 Sep 2011, 10:17 AM
Hello,

Try setting the folowing CSS to hide the UI elements.
CSS:
<style type="text/css">
.RadUpload_Default .ruRemove
 {
  display:none !important;//hide the remove
 }
.RadUpload .ruFileWrap
 {
  display:none !important;//hide File Upload
 }
</style>

Thanks,
Princy.
0
Datatrek
Top achievements
Rank 1
answered on 08 Sep 2011, 10:35 AM
Works!
Thank you Princy ;-)
Tags
AsyncUpload
Asked by
Datatrek
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Datatrek
Top achievements
Rank 1
Princy
Top achievements
Rank 2
Share this question
or