Remove selected rows does not update selection info
Remove selected rows does not update selection info

I'm using datatable 2.2.0 and select 3.0.0. User can multi select rows. After processing selected rows I remove them from table, but selection info does not update to "nothing selected".
_this.datatable.rows({selected: true}).remove();
_this.datatable.draw(false);
What am I missing?
Answers
I debugged into and settings._select_set contains still selected rows before. How can I empty this variable?
I built a simple test case with Datatables 2.2.0 and Select 3.0.0 and and it seems to work correctly:
https://live.datatables.net/farovake/1/edit
I believe by default the select info element is removed when no rows are selected. If your table displays "nothing selected" then you have other coding to show this. Maybe something like
language.select.rows
.Please update the test case or provide a link to a test case replicating the issue so we can see what you have to help debug.
https://datatables.net/manual/tech-notes/10#How-to-provide-a-test-case
Kevin