I am using Infragistic NetAdvantage 7.1 UltraGrid in WinForm.
Basically, i have a grid column of numeric values and i set the column format to show 3 decimal places.ultraGrid1.DisplayLayout.Bands[0].Columns["Number'].Format = "#,##0.000"
1.1112.2223.333However, i run into scenarios where i need to show 2 decimal places only on the 2nd row (i.e 2.22), but the 1st / 3rd rows should still show 3 decimal places. See below:
1.1112.223.333I look at the UltraGridCell object, and there is no "Format" property at the cell level that overrides theone on Column level. I am not sure how to achieve this one. Could someone please advise? Thanx a lot.
As luck would have it, I recently wrote a sample of this. I've attached it here.
If we have editors setup at UltraGridColumn level. With your example, what is the implication of setting UltraGridCell.Editor to new EditorWithText(). Does the cell-level editor completely replaces the column-level editor? Can a column-level editor be cloned and used at the cell-level as long as they are of type EmbeddableEditorBase?
By the way the attached file is corrupted!!
Can you please post here what you did?
I am having problems with the Column Decimal precision. I need to display like:
1.2
0.0
but it is displaying like 0.00000
and 1.00000