ValidationSettings.ErrorTextPosition Property
In This Article
Gets or sets the error text’s position within the error frame relative to the validated control.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
[DefaultValue(ErrorTextPosition.Right)]
public ErrorTextPosition ErrorTextPosition { get; set; }
#Property Value
Type | Default | Description |
---|---|---|
Error |
Right | One of the Error |
Available values:
Name | Description |
---|---|
Top | An error text is displayed at the top of the validated control. |
Right | An error text is displayed at the right of the validated control. |
Bottom | An error text is displayed at the bottom of the validated control. |
Left | An error text is displayed at the left of the validated control. |
#Property Paths
You can access this nested property as listed below:
Object Type | Path to Error |
---|---|
ASPx |
|
Edit |
|
#Example
<dx:ASPxTextBox ID="tbEMail" runat="server" Size="49" NullText="Enter e-mail ..." Font-Size="Small">
<ValidationSettings EnableCustomValidation="True" ErrorDisplayMode="Text" ErrorTextPosition="Bottom" SetFocusOnError="true">
<ErrorFrameStyle Font-Size="Smaller"/>
<RegularExpression ValidationExpression="^\w+([-+.'%]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$"
ErrorText="Invalid e-mail"/>
<RequiredField IsRequired="True" ErrorText="E-mail is required"/>
</ValidationSettings>
<NullTextStyle Font-Size="Small"/>
</dx:ASPxTextBox>
See Also