How to make mui radio group disabled in react js?
July 31, 2023Hi Friends 👋,
Welcome To aGuideHub!
To make mui radio group disabled in react js, you can use disabled
in RadioGroup. it will make mui radio group disabled in React JS.
Today, I am going to show you, How to make mui radio group disabled in react js.
Installation
Install the following packages to use mui radio in react js.
npm
npm install @mui/material @emotion/react @emotion/styled
yarn
yarn add @mui/material @emotion/react @emotion/styled
Table of contents
- Install MUI and create a new React app.
- Import Material-UI radio.
- Use the radio Component
Step 1: Install MUI and create a new React app.
First you have to install the React project. You should use create-react-app
command to create a new React project.
npx create-react-app my-app
cd my-app
npm start
Step 2: Import Material-UI radio.
After installing MUI
, you have to import your React component. To do this, add the following line to the top of your component file.
import * as React from "react";
import Radio from "@mui/material/Radio";
import RadioGroup from "@mui/material/RadioGroup";
import FormControlLabel from "@mui/material/FormControlLabel";
import FormControl from "@mui/material/FormControl";
import FormLabel from "@mui/material/FormLabel";
Step 3: Use the Radio Component.
You can use the Radio
component in your react js. For example, Radio buttons let users make a mutually exclusive choice. Only one selection is allowed from the available set of options. You can use disabled
component make a radio group disabled in react js.
<RadioGroup
aria-labelledby="demo-radio-buttons-group-label"
name="radio-buttons-group"
value="disabled"
disabled
>
<FormControlLabel value="female" control={<Radio />} label="Female" />
<FormControlLabel value="male" control={<Radio />} label="Male" />
<FormControlLabel value="other" control={<Radio />} label="Other" >
</RadioGroup>
MUI material make mui radio group disabled example.
The below code is an example, you need to import Radio
Component. Then, you can create a Radio button and set the value="disabled" disabled
component to make it disabled.
App.js
import * as React from "react";
import Radio from "@mui/material/Radio";
import RadioGroup from "@mui/material/RadioGroup";
import FormControlLabel from "@mui/material/FormControlLabel";
import FormControl from "@mui/material/FormControl";
import FormLabel from "@mui/material/FormLabel";
export default function RowRadioButtonsGroup() {
return (
<FormControl>
<FormLabel id="demo-radio-buttons-group-label">Gender</FormLabel>
<RadioGroup
aria-labelledby="demo-radio-buttons-group-label"
name="radio-buttons-group"
value="disabled"
disabled
>
<FormControlLabel value="female" control={<Radio />} label="Female" />
<FormControlLabel value="male" control={<Radio />} label="Male" />
<FormControlLabel value="other" control={<Radio />} label="Other" />
</RadioGroup>
</FormControl>
);
}
In the above code example, I have used the @mui/material
component and made mui radio group disabled in react js.
Check the output of the above code example.
Here, we are provided code sandbox links for the above program make mui radio group disabled in react js. Then you can use whenever you want and do the changes as per your requirements.
All the best 👍