-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[MdTable] selectable count after removing item(s) #1610
Comments
I think this was fixed with #1496. Would you check it with |
I created a small demo in codepen that using last release 1.0.0-beta8 I will check dev branch. |
I checked your last commit and everything works fine. |
Hello @osamaz26 is there any way to contact you? |
When i'm trying to remove one or more items from MdTable by changing source, i found that the removed items are still existed somewhere because SelectAll button is showing the count of removed items.
I'm using 1.0.0-beta8 version and table has md-selectable="multiple" flag with SelectAll button.
if checked the code and found this line in MdTableRow is preventing removing item from selectable array.
line number 125.
if (!this.hasMultipleSelection) {
return
}
I'm not sure if there is another way to remove item(s) from table and fix selectable items when clicking on SelectAll button.
The text was updated successfully, but these errors were encountered: