Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.9k views
in Technique[技术] by (71.8m points)

reactjs - Material UI Confirm Alert is hidden behind dialog

I have a material ui dialog that has the user confirm an action. The problem is the alert is hidden behind the dialog. Is there a way to give the alert a higher z index or something in order to avoid this so that the alert would take the foreground?

import Dialog from "@material-ui/core/Dialog";
import { confirmAlert } from "react-confirm-alert";

<Dialog><Button onClick={clickEvent}</Button></Dialog>

function clickEvent(){
    await confirmAlert({
        title: "title",
        message: "message",
        buttons: [
          {
            label: "ok",
          },
          {
            label: "cancel",
          },
        ],
      });
    }
}

As a work around i could have dialog close on click event and then reopen again. Would rather be able to just have the alert take the foreground.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...