Categories | Question details Back To List | ||
when I write the new record in the existing cell, but not change in database Dear sir, Thank you for your reply our mail. thanks. Answer posted by Support on Jan 08, 2009 10:21 Beware that dataprocessor ( used in mentioned sample ) will not react on cell changes triggered by API calls, it will react only on edit operations initiated by user actions. If you need to update cell by API, you can force server update manually. grid.cells(id,ind).setValue(some); dataproc.setUpdated(id,true); //force data saving |