I have a question regarding an implementation.
So I have a table that supports versioning. The user has possibility to view all the versions and also has the possibility to delete the rows.
I have used the Destroy method from the telerik Grid but I have a question. The Destroy method on the demos returns the same list of rows that it was sent. Can this be used to return more rows that were delete than the ones sent?
So for instance let say I have 5 versions of my record in the grid. If I delete one of them can the Destroy method return all 5 records and the grid updates by removing all the 5 rows?
I would like to avoid doing a refresh on the grid. I should mention that I am not using pagination so it wouldn't be a problem.