Hi,
Within a WinForms UlraGrid, I am looking for a means (via code) to alter the appearance of an entire row, whenever a targeted column value meets a certain condition. For example, I already know that I can target the respect cell via the ConditionValueAppearance. The closest I could find to what might work is the ConditionAppearanceRow Class. Unfortunately you don't provide any code snippets to demonstrate how this class is hooked up with a given DisplayLayout Band.
In any case, I need this capability through code, so I can set the row appearance on the fly. If there is another way to do this, I am all ears.
Thanks,
Lacy
No we have not.
Any other reason why this is happening, because before adding the InitializeRow event everything was perfect.
Thanks for your quick responses
Ganesh.
If you are setting the Value of bound cells in code, then you should call the Update method on the row in order to commit those changes.
e.Row.Update();
Hello,
This could happen if you have set the UpdateMode property of the Grid to OnUpdate, like this:
ultraGrid1.UpdateMode = Infragistics.Win.UltraWinGrid.UpdateMode.OnUpdate;
Please let me know if this is not the case.
image not shown in the editor so attached it.
Hi Boris,
Here is the snap.
Complications: - Grid has couple of bands that's it.