Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 907 Bytes

asyncupload-add-an-image-to-the-asyncupload-button.md

File metadata and controls

34 lines (23 loc) · 907 Bytes
title description type page_title slug res_type
Add an image to the AsyncUpload button
Add an image to the AsyncUpload button. Check it now!
how-to
Add an image to the AsyncUpload button
asyncupload-add-an-image-to-the-asyncupload-button
kb

How to

Add an image to the AsyncUpload button

Add Custom Icon

Solution

You can insert your own image inside the Select Button of RadAsyncUpload using the CSS class below:

.ruButton.ruBrowse
{
    background-image: url("Images/Apply.png") !important;
    background-repeat: no-repeat;
    background-position: 5px 5px;
}

The background-position property allows to control the top and left coordinates of the image inside the button.

Note that the solution is applicable for the Lightweight rendering of the control - RenderMode="Lightweight".