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

MaxFileInputsCount and InitialFileInputsCount

1 Answer 71 Views
FileExplorer
This is a migrated thread and some comments may be shown as answers.
Atlas
Top achievements
Rank 1
Atlas asked on 12 Mar 2010, 09:01 PM
These two properties exist for the upload control, but I am unable to find them for the file explorer. Does the file explorer allow you to control these settings?

MaxFileInputsCount="4"
InitialFileInputsCount="2"

1 Answer, 1 is accepted

Sort by
0
Lini
Telerik team
answered on 15 Mar 2010, 12:15 PM
Hi,

You can set these properties from your code. The upload component is available through a property of the RadFileExplorer control. For example:

protected void Page_Load(object sender, EventArgs e)
{
    RadFileExplorer1.Upload.MaxFileInputsCount = 4;
    RadFileExplorer1.Upload.InitialFileInputsCount = 2;
}


Kind regards,
Lini
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
Tags
FileExplorer
Asked by
Atlas
Top achievements
Rank 1
Answers by
Lini
Telerik team
Share this question
or