DxUpload.SelectButtonText Property
Specifies the select button’s text.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.1.dll
NuGet Package: DevExpress.Blazor
Declaration
[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>
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