About 410,000 results
Open links in new tab
  1. How to use multiple material ui dialog with React?

    Sep 12, 2020 · How to use multiple material ui dialog with React? Asked 5 years, 3 months ago Modified 5 years, 3 months ago Viewed 18k times

  2. aria-hidden warning on closing mui dialogue - Stack Overflow

    Sep 20, 2024 · I'm using Material-UI (MUI) v6 to create a dialog that opens when a user clicks a button. I'm facing accessibility warning that only occurs on closing the dialog for the first time …

  3. Material UI - How to open Dialog imperatively/programmatically

    Sep 4, 2020 · Normally this is how you use Material UI Dialog. The code below is taken from the docs: export default function AlertDialog() { const [open, setOpen] = React.useState(false); …

  4. How to change the position of material-ui's dialog?

    Apr 26, 2020 · Using material-ui in my react app, is there a way I can change the position when the dialog is opened? now it's always centered. Thanks in advance!

  5. How to create Material UI Dialog with transparent background …

    5 You don't have to use a transparent Dialog, Material UI exposes the Backdrop component which Dialog uses behind the scene. Backdrop lets you put any content inside a dimmed layer …

  6. Creating reusable component with @material-ui/Dialog

    Jan 23, 2023 · Creating reusable component with @material-ui/Dialog Asked 2 years, 11 months ago Modified 2 years, 11 months ago Viewed 1k times

  7. How to make Material-UI Dialog resizable - Stack Overflow

    I have a project that requires a dialog to be resizable and draggable. Material-UI Dialog documentation has steps on how to make it draggable. I want to find out the resizable part. …

  8. How to handle "outside" click on Dialog (Modal)?

    5 since disableBackdropClick is deprecated in the newest versions of material ui so the easier way to remove onClose from the dialog properties and add a button on DialogTitle and fire …

  9. Dialog width Material UI - Stack Overflow

    Nov 8, 2017 · I am not able to increase the Dialog width in Material UI. It adds a horizontal scrollbar to Dialog. Is there any way to increase the width of Dialog in Material UI? Can …

  10. reactjs - How do I prevent Material UI Dialog from being …

    I have a React JS app that uses the Dialog component and I cannot seem to find any documentation on how I can prevent the dialog from being automatically dismissed by merely …