I have created a Single Page Application (ASP.NET MVC4) using Steven Sanderson's instructions. The issue I'm currently seeing is that whenever I edit an item and save the changes, Upshot sends the whole item back to the server and not only the modified properties as it would be expected. (I know this because firebug can inspect what is being sent to the server).
I'm pretty sure that upshot should be able to send only the modified properties as it uses knockout observables so it can keep track of what's changed and what's not.
My question is, is this possible at the moment (maybe some kind of configuration parameter) or should I wait for a future version to implement this? Upshot is a rather new library so finding documentation is pretty hard right now.