I have a page that I'm loading in a view model, inside this view model has a data source. I'm binding inside my page to that data source via:
<ejs-grid id="GridOverview" allowFiltering="true" allowSorting="true" dataSource="@Model.GridData">
I'm wanting to update my values using Batch Update.... or any update for that matter.... What I've found is that I'm required to use the URL adapter for editing/saving but then I can't bind with my current data source.
Meaning I have to now put my dataSource as a new controller method and cannot keep what's show above.
Is there any other way to send updates to the server other than this URL adapter?