Back to previous

How to Customise RadUpload Appearances

Telerik's RadUpload control doesn't come with many documentation. The default comes with multiple file slots, with add and delete button but sometimes we might only need just one uploader. To disable that, simply do the following:

radUpload.ControlObjectsVisibility = ControlObjectsVisibility.None

For other customised settings:

if (checkboxCheckBoxes.Checked) {
                Radupload1.ControlObjectsVisibility = ControlObjectsVisibility.CheckBoxes;
}

if (checkboxRemoveButtons.Checked) { 
       Radupload1.ControlObjectsVisibility |= ControlObjectsVisibility.RemoveButtons;
}

if (checkboxClearButtons.Checked) { 
       Radupload1.ControlObjectsVisibility |= ControlObjectsVisibility.ClearButtons; }

if (checkboxAddButton.Checked) {
       Radupload1.ControlObjectsVisibility |= ControlObjectsVisibility.AddButton;
}
if (checkboxDeleteSelectedButton.Checked) {
       Radupload1.ControlObjectsVisibility |= ControlObjectsVisibility.DeleteSelectedButton;
}

 

ShareThis

If you think this post is useful, please recommend me at the bottom of the page. ;)

Discussion