I have a dashboard using an ultragrid bound to a datatable that is updated at runtime by a process. The grid displays the updated informatoin as it is bounded to the datatable.
Now I want to format the cell colour and font of the updated cell but can't seem to find the event relating to this. There is no user input so I cannot use the stock events
Okay I found the initializeRow event to do the trick. However I cannot find out which cell has changed. Any ideas?
Hello Adeyinka,
Thank you for posting in our forum.
If I understand you correctly you need to determine when the data in the DataTable was changed by the back end data base. Please note, the grid does not deal with the data base directly. It is only deal with the local data source, e.g. DataTable in your case. So there is no event in the grid which may fire when the back end data base changes some data in the DataTable. So you need to track the changes in the DataTable and not in the grid. You may use RowChanging or ColumnCnahging events of the DataTable class for this.
Please let me know if you need any additional information.
Thank you for using Infragistics Controls.