Make sure to visit THIS helpful link for batch editing documentation on Telerik's website. It provides a wide array of client-side functions that can help you achieve the desired behavior.
You may need to utilize two specific functions for this task. The first one being:
deleteRecord(tableView,row);
By using this function, you will be able to delete the specified row from the table with ease by providing the necessary parameters.
The second function is:
saveChanges(tableView);
This function triggers the saving process of the grid data. Keep in mind that deleting rows won't automatically save, so utilizing this function is crucial in ensuring your changes are saved properly.
To implement these functions effectively, consider adding a dedicated column for the delete button. You can then assign the corresponding client-side function to execute both of the mentioned functions for each button click.