Hi,
Is there a way to sync an element after create was called?
EX: In edit or update there are only a number of field that are actually set by user the rest are only information. While displaying editor I do not want to pull reference information however the new value returned from controller is being ignores.
Is there a way to sync an element after create was called?
EX: In edit or update there are only a number of field that are actually set by user the rest are only information. While displaying editor I do not want to pull reference information however the new value returned from controller is being ignores.
// I have a data source definedWorkbench = new kendo.data.DataSource({ transport: { create: { url: "/api/workbench", type: "POST" } }})// I add a new object to Data sourceWorkbench.add({...});// and call sync the action on workbench// controller returns a new object with id and other// properties set however I think the return is being// ignored Workbench.sync();