This is a migrated thread and some comments may be shown as answers.

How can invisible select Button

1 Answer 88 Views
Upload (Obsolete)
This is a migrated thread and some comments may be shown as answers.
Henry John
Top achievements
Rank 1
Henry John asked on 17 Apr 2010, 01:05 PM
in RadUpload Can we change select button into Add Button? . It mean when we click into textbox will open file and when we click to Add button will create new upload like normal Add Button in RadUpload , I also enclose a image which describe about what i say.Please help me.

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 19 Apr 2010, 06:53 AM

Hi Henry John,

Use the ControlObjectsVisibility property to configure RadUpload to contain only those controls you want. And adding following CSS on page will hide the Select button.

ASPX:

 
<telerik:RadUpload ID="RadUpload1" runat="server" ControlObjectsVisibility="CheckBoxes, RemoveButtons, AddButton"  
    OnClientFileSelected="OnClientFileSelected">  
</telerik:RadUpload> 

CSS:

 
    <style type="text/css">  
        .ruBrowse  
        {  
            displaynone !important;  
        }  
    </style> 

-Shinu.

Tags
Upload (Obsolete)
Asked by
Henry John
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or