最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - React select can not overlay react modal - Stack Overflow

programmeradmin0浏览0评论

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
Add a ment  | 

3 Answers 3

Reset to default 10

As 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 }),
  }}
/>
发布评论

评论列表(0)

  1. 暂无评论