Hi there.. Into a xamDataGrid I want to see a decimal value like "11.111,1234", but:
1) if i put the EditAsType "Decimal", appairs the "€ 11.111,12" value;(if the starting value is "11.111,1289", it rounds to "€ 11.111,13");2) if i put the EditAsType "Double", appairs the "11.111,12" value:(if the starting value is "11.111,1289", it rounds to "11.111,13");3) if i put the EditAsType "String", appairs the "11111,12" value:(There isn't any separator of thousands and if I want to calculate this column i must first convert the value).
How can I visualize the correct value (with 4 decimal places)?
Thanks.