MaskSettings.UseInvariantCultureDecimalSymbolOnClient Property
Specifies whether to use the period (.) as the decimal point in an editor’s value on the client side.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Property Value
Type | Default | Description |
---|---|---|
Boolean | false |
|
Property Paths
You can access this nested property as listed below:
Object Type | Path to UseInvariantCultureDecimalSymbolOnClient |
---|---|
ASPxButtonEdit |
|
ASPxTextBox |
|
ButtonEditProperties |
|
TextBoxProperties |
|
Remarks
Use the UseInvariantCultureDecimalSymbolOnClient property to specify whether the period should be used as the decimal point in an editor’s value on the client side instead of the culture-dependant decimal points in the mask.
Note that the UseInvariantCultureDecimalSymbolOnClient property is in effect if the MaskSettings.IncludeLiterals property is set to MaskIncludeLiteralsMode.DecimalSymbol.
<dx:ASPxTextBox ID="ASPxTextBox1" runat="server" Width="170px">
<MaskSettings IncludeLiterals="DecimalSymbol" Mask="<0..9999g>.<0..99>" UseInvariantCultureDecimalSymbolOnClient="true" />
</dx:ASPxTextBox>