Hi;
I have a grid with unbound checkboxes and with some text fields. I need to handle cellValueChanged event in server side. For now I handle cellSelectionChange event and post checkbox state to my database. If cell not changed but the checkbox checked or unchecked I cannot set value for database eventually. What can I do to handle cell value changes on server side ?
Here is my grid.
I'll do it by CellSelectionChanged event but I need to reset change state. (by providing grid to forget which cell selected) how can I do it ?
I've solved the issue by writing this line in CellSelectionChanged event.
e.CurrentSelectedCells.RemoveAt(0);