I'm using Ext.data.proxy.Rest.html to update my Store.
When I create a new model/row in my store, it is the proxy is sending a POST request correctly, however it is adding it's own id to the model it is creating, and sending that id to the server. I understand it needs a unique id when creating a new row in my Store, but when it sends that unique id to my servers API, it is causing an error because the API I am using is expecting to create it's own id.
Is there any way to remove the local id from the request and then use the servers id that will be sent in the API's response?