I have created a drop down menu using the react component . The code is below:
JavaScript
x
7
1
<Select
2
style={{ width: 300 }}
3
options={people}
4
onChange={this.choosePerson}
5
placeholder="Select person">
6
</Select>
7
The person object is as follows:
JavaScript
1
10
10
1
const people = [];
2
people.push({
3
label: 'John'
4
value: 'John'
5
});
6
people.push({
7
label: 'Mary'
8
value: 'Mary'
9
});
10
I was wondering whether it is possible to have sub-headings within this drop down menu in order to group the people (e.g. Men, Women). I have found it possible when using plain javascript but I can’t seem to find how to do it with the set up I currently have.
Advertisement
Answer
I finally managed to achieve it like this:
JavaScript
1
17
17
1
<Select defaultValue="Select Person" onChange={this.selectPerson} style={{ width: 300 }}>
2
<OptGroup label="Man">
3
{
4
this.state.men.map(function(man) {
5
return (<Option key = {man.value}> {man.label}</Option>);
6
})
7
}
8
</OptGroup>
9
<OptGroup label="Women">
10
{
11
this.state.women.map(function(woman) {
12
return (<Option key = {woman.value}> {woman.label}</Option>);
13
})
14
}
15
</OptGroup>
16
</Select>
17