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

fix(ngOptions): allow empty option selection with multiple attribute #12541

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ng/directive/ngOptions.js
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ var ngOptionsDirective = ['$compile', '$parse', function($compile, $parse) {

forEach(selectedValues, function(value) {
var option = options.selectValueMap[value];
if (!option.disabled) selections.push(options.getViewValueFromOption(option));
if (option && !option.disabled) selections.push(options.getViewValueFromOption(option));
});

return selections;
Expand Down
12 changes: 12 additions & 0 deletions test/ng/directive/ngOptionsSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -2058,6 +2058,18 @@ describe('ngOptions', function() {
// ensure the option has not changed following the digest
expect(element[0].selectedIndex).toEqual(0);
});

// bug fix #12511
it('should be selectable if multiple attribute is applied on select element',function() {
createMultiSelect(true);

// select the empty option
setSelectValue(element,0);

// ensure selection and correct binding
expect(element[0].selectedIndex).toEqual(0);
expect(scope.selected).toEqual([]);
});
});


Expand Down