I have an amazing SlickGrid designed to asynchronously access data and resubmit user messages to the server asynchronously. In general terms, a server can modify multiple row fields based on user changes. Thus, after updating the row, I would like SlickGrid to update only this row without changing the rest of the view.
Does anyone know how to do this?
In my case, the field that changes on the server is the timestamp associated with the record, which is updated by the database trigger. If the timestamp is out of date, the user has an old copy of the data, and if they send the changes, they can overwrite the new copy. Since I cannot find a way to initiate the update, the user cannot change his own changes without updating the browser window (forcing a full update).
source share