Closed bthachdev closed 6 years ago
Note that the event is only called in refresh()
- are you calling it?
Also note this repo is now unmaintained - see slickgrid.net for more details.
yes, I called it.
what example are you using to reproduce the behaviour?
The issue happen in our code, not in slickgrid library. So I close this.
If we delete an only item in the grid, the onRowCountChange does not fire.
Maybe problem is in these code in slick.dataview.js ? What if rows.length is 0 and countBefore is 0 after we delete an item.
if (countBefore != rows.length) { onRowCountChanged.notify({previous: countBefore, current: rows.length}, null, self); }