-
Notifications
You must be signed in to change notification settings - Fork 399
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
checkbox problem #525
Comments
@carol881221 Checkbox actually has three states: checked, unchecked, and indeterminate. The one you point out is the indeterminate state. It occurs when not all checkboxes on the current page were selected. Vuetable will try to determine the correct state of this "select all" checkbox by checking if all, none, or partial the rows in the current page were selected and assigned appropriate state to this checkbox. So far, in the given picture, all 4 rows appear to be selected, this checkbox should be in "checked" state. It may or may not be the bug, but I think I haven't changed any code related to this function. So, if you can create a sample on CodeSandbox, CodePen, or jsfiddle to reproduce this, it would be easier for me to check it. |
@ratiw Firstly, thank you for your answer. |
I have a table with checkbox.
The current number of records is less the per-page.
When click the check all box,
Is this correnct or show
Is this a bug ?
The text was updated successfully, but these errors were encountered: