Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

fix(ngAria): correctly set "checked" attr for checkboxes and radios #11007

Closed
wants to merge 1 commit into from

Conversation

Narretz
Copy link
Contributor

@Narretz Narretz commented Feb 8, 2015

Make sure the checked attribute is set correctly for:

  • checkboxes with string and integer models using ngTrueValue /
    ngFalseValue
  • radios with integer models
  • radios with boolean models using ngValue

Fixes #10389
Fixes #10212

@marcysutton can you take a look at this?

@@ -85,6 +85,28 @@ describe('$aria', function() {
expect(element.attr('aria-checked')).toBe('false');
});

it('should handle checkbox with string model values using ng(True|False)Value', function() {
var element = $compile('<input type="checkbox" ng-model="val" ng-true-value="\'yes\'">' +
'ng-false-value="\'no\'"'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this attribute be part of the input element?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, definitely! although it doesn't make a difference, since we don't test if the correct ng-false-value is set.

Make sure the checked attribute is set correctly for:
- checkboxes with string and integer models using ngTrueValue /
ngFalseValue
- radios with integer models
- radios with boolean models using ngValue

Fixes angular#10389
Fixes angular#10212
@marcysutton
Copy link
Contributor

This looks good to me. Nice work on the test coverage! 👍

(the ci failures look unrelated to your changes)

@Narretz
Copy link
Contributor Author

Narretz commented Feb 11, 2015

Landed as d6eba21 and 944c150!

@Narretz Narretz closed this Feb 11, 2015
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.