Check Uncheck All Checkbox using ReactJS

Today, We want to share with you Check Uncheck All Checkbox using ReactJS.In this post we will show you how to get checkbox checked value in reac, hear for How to implement select/deselect all checkbox using react we will give you demo and example for implement.In this post, we will learn about Select/Unselect All checkbox in reactJs with an example.

Check Uncheck All Checkbox using ReactJS

There are the Following The simple About Check Uncheck All Checkbox using ReactJS Full Information With Example and source code.

As I will cover this Post with live Working example to develop react multiple checkbox form, so the react multiple checkboxes onchange for this example is following below.

Step 1: JavaScript Part


import React, { Component } from "react";
import ReactDOM from "react-dom";

class Box extends Component {
  constructor(props) {
    super(props);
    this.state = {
      allChecked: false,
      list: [
        { id: 1, name: "Mobile", IsActive: false },
        { id: 2, name: "Iphone", IsActive: false },
        { id: 3, name: "Laptop", IsActive: false }
      ]
    };
  }

  handleChange = e => {
    let productName = e.target.name;
    let checked = e.target.checked;
    this.setState(prevState => {
      let { list, allChecked } = prevState;
      if (productName === "selectAll") {
        allChecked = checked;
        list = list.map(item => ({ ...item, IsActive: checked }));
      } else {
        list = list.map(item =>
          item.name === productName ? { ...item, IsActive: checked } : item
        );
        allChecked = list.every(item => item.IsActive);
      }
      return { list, allChecked };
    });
  };

  renderList = () => {
    return this.state.list.map(item => (
      
)); }; render() { return (
Select all
{this.renderList()}
); } } ReactDOM.render(, document.getElementById("myreactApp"));

Step 2: HTML part

index.html





	
	
	
	
	
	React App - How to implement select/deselect all checkbox using react - www.pakainfo.com



	

Select/Unselect All checkbox in reactJs

Step 3: styles.css


.App {
  font-family: sans-serif;
  text-align: center;
}

select all checkbox react
Web Programming Tutorials Example with Demo

Read :

Summary

You can also read about AngularJS, ASP.NET, VueJs, PHP.

I hope you get an idea about Check Uncheck All Checkbox using ReactJS.
I would like to have feedback on my infinityknow.com blog.
Your valuable feedback, question, or comments about this article are always welcome.
If you enjoyed and liked this post, don’t forget to share.

Leave a Comment