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
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.