I have a Kendo Grid where one of the columns is a Boostrap progress bar. It is animated and represents a file upload.(the width value is modified with angular)
Once the item is done I remove the item with the remove function like this"
Grid.dataSource.remove(item);
However all the rest of items in the grid get refreshed somehow and the progress bars go back to zero and get refilled. So if an item in the list is at 70%, it will go back to zero and get refilled quickly.
It happens very fast in a split second but it just looks bad.
Is it possible to stop the refresh of other items and only remove a single item in the datasource?