Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
4.0k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...