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
486
Get edited item in ultragrid cell
posted

Hi

 

I am using a UltraWebGrid, in which I want to get value of UltraGridCell only if its value is edited.

 

How can I check at server side if value of UltraGrid cell is edited or not ?

Please help me

  • 45049
    posted

    You could handle the grid's UpdateCell event (or UpdateCellBatch), which will be raised for each cell that has been edited.

    If you're using the grid's AJAX functionality, or if not and you want the page to post back as soon as you finish editing a cell, use UpdateCell.

    If you're not using the grid's AJAX functionality, and you want to accumulate all such changes until something else causes a postback, use UpdateCellBatch.

  • 384
    Verified Answer
    posted

    You could use cell.DataChanged property in server side to find out if the cell has been edited on client or not.