RadUpload for ASP.NET

Customizing the UI Send comments on this topic.
See Also
Uploading Files > RadUpload > Customizing the UI

Glossary Item Box

The visibility of the RadUpload UI elements is controlled by the ControlObjectsVisibility property. Their visual appearance can be changed by setting the Skin property to the name of the skin you want to use. You can also create a custom skin.

Note: If you want to modify the width of the file inputs inside RadUpload, you may follow the instructions in Modifying File Input Appearance.

Example:

This example demonstrates how to set the RadUpload skin to "Vista" and to display only some of its user interface elements:

ASPX

<rad:radupload runat="server" id="RadUpload1"
    skin="Vista" ControlObjectsVisibility="RemoveButtons,ClearButtons,AddButton" />

VB.NET

RadUpload1.Skin = "Vista"
RadUpload1.ControlObjectsVisibility = ControlObjectsVisibility.RemoveButtons Or _
    ControlObjectsVisibility.ClearButtons Or ControlObjectsVisibility.AddButton

C#

RadUpload1.Skin = "Vista";
RadUpload1.ControlObjectsVisibility = ControlObjectsVisibility.RemoveButtons |
    ControlObjectsVisibility.ClearButtons ControlObjectsVisibility.AddButton;

See Also