Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
165
how to change apperance of most recently updated cell value as in microsoft access
posted

how to change apperance of most recently updated cell value as in microsoft access.

if you update a particular cell value its apperance should change to keep track that which cell value you have just changed 

  • 469350
    Verified Answer
    Offline posted

    There's nothing built-in to the grid to do this. What I would do is add an unbound hidden column that contains some information about cells that are recently changed. When a user updates a cell, I could use AfterCellUpdate to update this unbound column. Then I could use the InitializeRowevent of the grid to color the cell based on the information in the hidden column.