Hi,
Is there an UltraGridCell value update event?? I want to change the appearance of a cell and the row when the value changes. I am not interested in ValueBasedAppearance property on the column because the appearance is based on my own code.
Is there such an event? Like CellValueChanged?
Regards,
Taiyib.
If you want to color a cell based on the value of that cell, you would typically use the InitializeRow event.
But if you want to update teh appearance of the cell as the user is typing, the event you are looking for is CellChanged. But keep in mind that you cannot use the Value property of the cell inside this event, because the user is not necessarily done typing. So you have to use the Text of the cell.
Does the InitializeRow event fire if I change the data in the ultragrid's data source? The data is not changed by the end user, it is changed by an external data provider component.