Setting the value through setValue() API. But the cell has not been marked as changed. I am not using any processor. Is there any solution for this problem?
Unfortunately this is the expected behavior. In case of changing the cell value using the API you need to set the wasChanged() flag manually.
myGrid.cellById(row_id,col_ind).wasChanged=true;
Great! Its works for me.