Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DxUpload.AllowMultiFileUpload Property

Specifies whether users can upload (select in an Open File dialog or drag and drop) multiple files via the Upload component.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
[Parameter]
public bool AllowMultiFileUpload { get; set; }

#Property Value

Type Description
Boolean

true to enable multiple file upload; otherwise, false.

#Remarks

The Upload component allows users to select only one file in an Open File dialog or load only one dropped file. Set the AllowMultiFileUpload property to true to enable users to upload multiple files at once.

Razor
<DxUpload Name="myFile" 
          UploadUrl="https://localhost:10000/api/Upload/Upload/"
          AllowMultiFileUpload="true">
</DxUpload>

Run Demo: Upload - Multiple File Selection

See Also