Frontmatter
| id | 4225 |
| title | form.field.CheckBox: afterSetChecked() => event params |
| state | Closed |
| labels | bug |
| assignees | tobiu |
| createdAt | Mar 30, 2023, 9:34 AM |
| updatedAt | Mar 30, 2023, 9:35 AM |
| githubUrl | https://github.com/neomjs/neo/issues/4225 |
| author | tobiu |
| commentsCount | 0 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Mar 30, 2023, 9:35 AM |
v5.3.3 introduced a bug. instead of the checked state (true or false), the event now always gets
this.value, which is not correct for the unchecked value.switching to
this.getValue()should resolve it.