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

How do I customize File Explorer's AsyncFileUpload to show only one upload button

1 Answer 55 Views
FileExplorer
This is a migrated thread and some comments may be shown as answers.
Samir
Top achievements
Rank 1
Samir asked on 11 Feb 2013, 08:52 PM
How do I customize File Explorer's  AsyncFileUpload to show only one Add button?
Also how do i add checkbox and combobox to it?
I am customizing it for giving permissions.

1 Answer, 1 is accepted

Sort by
0
Dobromir
Telerik team
answered on 13 Feb 2013, 10:01 AM
Hi Samir,

I am not quite sure I understand the exact issue. The AsyncUpload component of RadFileExplorer does not have "Add" buttons. Such buttons exist in the standard upload - if you are using the standard upload (not AsyncUpload) you can limit the number of FileUpload fields using the approach from this KB article.

If you are using AsyncUpload component you can limit the number of Upload Fields using the following approach:
protected void Page_Load(object sender, EventArgs e)
{
    RadFileExplorer1.AsyncUpload.MaxFileInputsCount = 1;
}


All the best,
Dobromir
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
Tags
FileExplorer
Asked by
Samir
Top achievements
Rank 1
Answers by
Dobromir
Telerik team
Share this question
or