Hi, I'm using infragistic grid, and setting DisplayFormat of each column. DisplayFormat is type of string, and uses it`s value to show value of cellValue.ToString(DisplayFormat), when showing values to user in a grid (as Infra docs saying)
In grid I have doubles, that have many numbers after point, and I don`t know how many. And I need to use thousand seperator. So:
If I have:
<br/>
12345678.12345
<br/>
12345678.12
<br/>
, I want grid to show:
<br/>
1234,5678.12345
<br/>1234,5678.12
If I set DisplayFormat to N5, I get: 1234,5678.12000
How can I do that?