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