I have an editable grid that uses a custom store (built using the https://github.com/DevExpress/DevExtreme.AspNet.Data/blob/master/js/dx.aspnet.data.js create store).
I also get update notifications from the server when data in this grid is changed. I want the grid to update that row as the data flows in (from signalR). Ideally if the user is editing that row at the time, they'd just get a notification or something.
How can I update a row in the grid without causing it to call the update method on the custom store?
I was thinking that I could maybe back a custom store with an array store to cache the data locally - but when I call the update method from JS I would need to stop it from calling the AJAX method. But perhaps there is another way I can achieve this?
Thanks,
David