hey,
i search the value / the parameter with which i can set the format to xxxx,xx like a money-value in the databound coloum with a double-value in the card view.
The screenshot is attached.
In first, left top, it show´s the right format, but in the application it only show´s e.g. "55,5" or "2343,9" but i want to see "55,50" and "2343,90".
The Format property on the column simply calls the ToString method of the cell's Value and passes in the format. So you should check the Microsoft documentation for the data type you are using for the column and look at the ToString method to see what kinds of formats are supported.
If you are using double or decimal, then you might want to try setting the format to "c", which is currency.
Try something like:
UltraGridBand band = Grid.DisplayLayout.Bands[0]; band.Columns["ColumnName"].Format = "0:00.00"
UltraGridBand band = Grid.DisplayLayout.Bands[0];
band.Columns["ColumnName"].Format = "0:00.00"
Not sure what the format string should be...
http://blogs.msdn.com/kathykam/archive/2006/03/29/564426.aspx
might be useful