Skip to main content

FileUploaderBuilder.InvalidMinFileSizeMessage(JS) Method

The text displayed when the size of the file being uploaded is less than the minFileSize. Mirrors the client-side invalidMinFileSizeMessage option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public FileUploaderBuilder InvalidMinFileSizeMessage(
    JS value
)

Parameters

Name Type Description
value JS

A JavaScript variable that contains a string value.

Returns

Type Description
FileUploaderBuilder

A reference to this instance after the method is called.

Remarks

Use the new JS() expression to set the option’s value.

<script>
    var myValue = ...;
</script>

@(Html.DevExtreme().FileUploader()
    .InvalidMinFileSizeMessage(new JS("myValue"))
)
See Also