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

javascript - ReactStrap modal close icon is not getting show in the modal and How to use the header with some another tag - Stac

programmeradmin1浏览0评论

I am new to the react js. Here I am using the Modal of reactStrap.

<Modal isOpen={props.isOpen} centered='true'>
        <ModalHeader>
          Change this Question?
          <button type="button" class="close" aria-label="Close" onClick={props.closeModal} ><span aria-hidden="true">×</span></button>
        </ModalHeader>
        <ModalBody>
          <div className="row">
            <div className="col-md-12 text-center ">
              <Button type="submit" className="btn btn-outline-primary" onClick={props.showChangeQuestionModal} >Change by creating your own Question</Button>
            </div>
          </div>
          <div className="row">
            <div className="col-md-12 text-center marginForOrOption">
              <span>or</span>
            </div>
          </div>
          <div className="row">
            <div className="col-md-12 text-center">
              <Button type="submit" color="btn btn-primary">Change and Replace from Question bank</Button>
            </div>
          </div>
        </ModalBody>
        <ModalFooter>
        </ModalFooter>
      </Modal>
    </div>

Now Here I have added that button to close modal . But In reactstrap it es by default.But In my case it is not ing .

Another problem is that, In the ModalHeader, It es by default h5 so How can I change that ?

I am new to the react js. Here I am using the Modal of reactStrap.

<Modal isOpen={props.isOpen} centered='true'>
        <ModalHeader>
          Change this Question?
          <button type="button" class="close" aria-label="Close" onClick={props.closeModal} ><span aria-hidden="true">×</span></button>
        </ModalHeader>
        <ModalBody>
          <div className="row">
            <div className="col-md-12 text-center ">
              <Button type="submit" className="btn btn-outline-primary" onClick={props.showChangeQuestionModal} >Change by creating your own Question</Button>
            </div>
          </div>
          <div className="row">
            <div className="col-md-12 text-center marginForOrOption">
              <span>or</span>
            </div>
          </div>
          <div className="row">
            <div className="col-md-12 text-center">
              <Button type="submit" color="btn btn-primary">Change and Replace from Question bank</Button>
            </div>
          </div>
        </ModalBody>
        <ModalFooter>
        </ModalFooter>
      </Modal>
    </div>

Now Here I have added that button to close modal . But In reactstrap it es by default.But In my case it is not ing .

Another problem is that, In the ModalHeader, It es by default h5 so How can I change that ?

Share Improve this question asked Nov 30, 2018 at 6:29 ganesh kaspateganesh kaspate 2,69512 gold badges52 silver badges105 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 12

First question: You need to provide toggle method to your ModalHeader ponent's props if you want reactstrap to show its own close button so your ModalHeader should looks like:

<ModalHeader toggle={this.toggleModalMethod}>
   Change this Question?
</ModalHeader>

Second question: You are not gonna do much with h5 inside of modal header but you definitely can change your h5 element style to make it looks how you want it to look:

<ModalHeader>
  <span className="customStyleToOverrideDefault">Change this Question?</span>
</ModalHeader>

Please, dont forget to vote up for my answer if it helped you.

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论