swimlane / ngx-datatable

✨ A feature-rich yet lightweight data-table crafted for Angular
http://swimlane.github.io/ngx-datatable/
MIT License
4.63k stars 1.68k forks source link

Get Unselected checkbox #632

Open GuofuHuang opened 7 years ago

GuofuHuang commented 7 years ago

I'm submitting a ... (check one with "x")

[ ] bug report => search github for a similar issue or PR before submitting
[X] feature request
[ ] support request => Please do not submit support request here

Current behavior

Now when I unselect a checkbox, it doesn't display the item I just unchecked. Expected behavior

I hope to get the unchecked item. Reproduction of the problem

What is the motivation / use case for changing the behavior?

Please tell us about your environment:

mvhecke commented 7 years ago

Do you mean that yo expect that [selected] would output something like below? That would involve quite a change in behaviour. You could easily do these checks yourself.

[
  {
    row: Object,
    selected: true
  }, {
    row: Object,
    selected: false
  }
]
gavimg commented 5 years ago

Any updates on this.