This question is locked. New answers and comments are not allowed.
Hi.
A column in my grid is a number and I would like to format with millar separation and non-decimals.
Example: 123456 ---> 123.456
12345678 --> 12.345.678
10 -> 10
100 -> 100
1000 -> 1.000
Like Excel formating I use:
But the grid show for 1200 (an example) --> 1200,000 and I need 1.200
What is wrong?
Thanks.
PD: In the aspx page, I use Culture="es-ES". I trie the grid localization .Localizable("es-ES") but didn't work.
A column in my grid is a number and I would like to format with millar separation and non-decimals.
Example: 123456 ---> 123.456
12345678 --> 12.345.678
10 -> 10
100 -> 100
1000 -> 1.000
Like Excel formating I use:
columns.Bound(o => o.Valor).Title(
"Valor").Format("{0: #.##0}");
But the grid show for 1200 (an example) --> 1200,000 and I need 1.200
What is wrong?
Thanks.
PD: In the aspx page, I use Culture="es-ES". I trie the grid localization .Localizable("es-ES") but didn't work.