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.SelectButtonText Property

Specifies the select button’s text.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
[Parameter]
public string SelectButtonText { get; set; }

#Property Value

Type Description
String

The text displayed in the select button.

#Remarks

The Upload displays the Select File button that invokes the open file dialog. Use the SelectButtonText property to change this button’s text.

<DxUpload Name="myFile" UploadUrl="https://localhost:10000/api/Upload/Upload/"
          SelectButtonText="Select My File">
</DxUpload>

Upload Select Button Custom Text

To hide this button, set the ShowSelectButton property to false.

You can also use the ExternalSelectButtonCssSelector property to implement an external select button.

See Also