When number is big, the comma (,) is lost. for example, 3983,256,580.22 istead of 3,983,256,580.22
I am binding the query result to the xmlDataGrid directlty.Thanks!Steve
Hi Steve,
This is because you are using the default Mask on the XamCurrencyEditor.I suggest you to set a different mask as a style :
<Style TargetType="{x:Type igEditors:XamCurrencyEditor}" x:Key="CurrencyStyle"> <Setter Property="Mask" Value="{}{currency:10.2:c}" /></Style>
<igDP:Field Name="CurrencyValue"> <igDP:Field.Settings> <igDP:FieldSettings EditAsType="{x:Type sys:Decimal}" EditorType="{x:Type igEditors:XamCurrencyEditor}" EditorStyle="{StaticResource CurrencyStyle}" /> </igDP:Field.Settings></igDP:Field>
Regards
Vlad
Hi Vlad,
I am binding the result set automatically, so no indiviual field specified in xaml. How can I set the mask for all XmlDataGrid?
Thabks!Steve