4 Answers, 1 is accepted
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.
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:
Thanks,
Princy.
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 ;-)
Thank you Princy ;-)