Skip to main content

TextBoxBuilder.MaskInvalidMessage(JS) Method

A message displayed when the entered text does not match the specified pattern. Mirrors the client-side maskInvalidMessage option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public TextBoxBuilder MaskInvalidMessage(
    JS value
)

Parameters

Name Type Description
value JS

A JavaScript variable that contains a string value.

Returns

Type Description
TextBoxBuilder

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().TextBox()
    .MaskInvalidMessage(new JS("myValue"))
)
See Also