I have a react modal and inside it I have react-select
. How can I make select overlay the modal because some of my options in the botttom of modal did not appear ?
I tried z-index
but it did not work.
<MainSelect
className="select"
id={name}
isMulti
isRtl={!locale.ltr}
ponents={{ Option: OptionComponent }}
styles={this.customStyles}
theme={this.customTheme}
options={options}
value={value}
placeholder={placeholder}
onChange={this.handleChange}
onBlur={formik.onBlur}
onMenuOpen={() => {
if (setScroll) setScroll();
this.props.formik.setStatus("onMenuOpen");
}}
/>
I have a react modal and inside it I have react-select
. How can I make select overlay the modal because some of my options in the botttom of modal did not appear ?
I tried z-index
but it did not work.
<MainSelect
className="select"
id={name}
isMulti
isRtl={!locale.ltr}
ponents={{ Option: OptionComponent }}
styles={this.customStyles}
theme={this.customTheme}
options={options}
value={value}
placeholder={placeholder}
onChange={this.handleChange}
onBlur={formik.onBlur}
onMenuOpen={() => {
if (setScroll) setScroll();
this.props.formik.setStatus("onMenuOpen");
}}
/>
Share
Improve this question
edited Jul 18, 2019 at 12:49
Abhinav Kinagi
3,8313 gold badges30 silver badges45 bronze badges
asked Jul 18, 2019 at 7:30
Yussur AlaniYussur Alani
11 silver badge4 bronze badges
3 Answers
Reset to default 10As stated in this StackOverflow answer here, the menuPortalTarget
allows you to select the dom node over which the menu is overlayed.
<Select
menuPortalTarget={document.body}
styles={{
menuPortal: base => ({ ...base, zIndex: 9999 })
}}
/>
The issue here is the default style of React Modal i.e overflow:hidden
. And React-modal
allows you to easily override default styles. Just add overflow: visible
to the modal's CSS.
First, you need to set a className property on the Bootstrap modal, so you can easily select it in the DOM. Then in the react-select ponent, use the menuPortalTarget prop to specify that the dropdown menu should be attached to the modal. Use something similar to this:
<Select
...
menuPortalTarget={document.querySelector('.my-modal')}
styles={{
menuPortal: base => ({ ...base, zIndex: 9999 }),
}}
/>