Performing more research, I found this extremely useful information, which, indeed, should be in the documents, but it is "hidden" in the search message forum, which is not very convenient for searching:
http://www.kendoui.com/forums/ui/grid/refresh-grid-after-datasource-sync.aspx#2124402
I'm not sure if this is the best approach, but it solved my problem!
This solution simply uses the read method of the data source to update the model instances with data from the server.
Valuable information where it is executed: in the complete event of the transport.create object!
Here is the code:
transport: { read: { url: "http://myurl.json" }, create: { url: "http://mycreate.json", type: "POST", complete: function(e) { $("#grid").data("kendoGrid").dataSource.read(); } },
source share