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
375
When is InitializeRow event fired?
posted

Hi, I'm a bit confused about the InitializeRow event. Am i righ to say that this InitializeRow event is fired whenever there is a change in any cell (either value, or appearance) of a row? Thanks.

Parents
No Data
Reply
  • 469350
    Verified Answer
    Offline posted

     Actually, it does fire when a value in a cell is changed. 

    The purpose of the InitializeRow event is to give you a way to perform an action on a row based on some value in that row. So, for example, if you want to change the color of a row based on a value of a cell. Or enabled or disable a cell in the row based on the value of some other cell in the same row. 

    So it fires when the row is first created by the grid and also whenever a value of a cell is changed. 

Children