Hi,
I have a kendo sortable grid which allows the user to drag and drop rows so that the rows can be re-ordered.
This re-ordering needs to be updated to a Seq variable which is part of the dataItem.
The grid itself reads, creates, updates and deletes using a rest service.
I've referred to the telerik sortable demo using the following link : http://docs.telerik.com/kendo-ui/controls/interactivity/sortable/how-to/use-sortable-grid
My grid contains more than 10 items.
After the drag and drop operation is completed, the change function updates the Seq property in the dataItem.
When I call the dataSource.sync method, all the dataItems are pushed to the service to be updated.
I would like to send/push the single dataItem to the service which was re-ordered instead of sending all the dataItems.
I checked the dirty property and set it to true for the dataItem which I wanted to update. It did not work.
Post updates and calculations on the server, the grid dataSource will be refreshed.
Any help is appreciated.
Thanks