Skip to content

Commit

Permalink
Merge pull request #6442 from trevorsmith/master
Browse files Browse the repository at this point in the history
Correctly select options when nested inside an optgroup
  • Loading branch information
jimfb committed Apr 8, 2016
2 parents 2548108 + f7181e0 commit 5ac51c3
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/renderers/dom/client/wrappers/ReactDOMOption.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,16 @@ var ReactDOMOption = {

// Look up whether this option is 'selected'
var selectValue = null;
if (nativeParent != null && nativeParent._tag === 'select') {
selectValue = ReactDOMSelect.getSelectValueContext(nativeParent);
if (nativeParent != null) {
var selectParent = nativeParent;

if (selectParent._tag === 'optgroup') {
selectParent = selectParent._nativeParent;
}

if (selectParent != null && selectParent._tag === 'select') {
selectValue = ReactDOMSelect.getSelectValueContext(selectParent);
}
}

// If the value is null (e.g., no specified value or after initial mount)
Expand Down
17 changes: 17 additions & 0 deletions src/renderers/dom/client/wrappers/__tests__/ReactDOMSelect-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -537,4 +537,21 @@ describe('ReactDOMSelect', function() {
"Cannot set property 'pendingUpdate' of null"
);
});

it('should select grandchild options nested inside an optgroup', function() {
var stub =
<select value="b" onChange={noop}>
<optgroup label="group">
<option value="a">a</option>
<option value="b">b</option>
<option value="c">c</option>
</optgroup>
</select>;
var container = document.createElement('div');
var node = ReactDOM.render(stub, container);

expect(node.options[0].selected).toBe(false); // a
expect(node.options[1].selected).toBe(true); // b
expect(node.options[2].selected).toBe(false); // c
});
});

0 comments on commit 5ac51c3

Please sign in to comment.