Hello,
I am an Angular beginner, coming from WPF / Xamarin and I am trying to figure out how to correctly do the databinding with the syncfusion controls.
I have already implemented my own DataServices, which provide my data and handle CRUD operations. I am using the Azure Mobile Services as my backend, so I do not have a fully functional ODATA Service.
After loading my Data from my backend, the binding to the datasource of my grid is working as expected, but I have no idea how to handle inserts and updates.
All the documentation I have read was about the datamanager who completely manages the connection to the backend.
But I do not want to replace my current Dataservices with the DataManager.
I was thinking about something like a CommandBinding to the update or insert button within the grid or am I completely wrong with this approach?
My dataservices are implemented similar to the Angular Hero Tutorial: https://angular.io/tutorial/toh-pt4
What would be the correct way to handle this problem?