3

Hi i am using material table in react project. I want to add a checkbox in my table cell. For example in Birth year colume in place of 1987. How to achieve that?

https://codesandbox.io/s/material-demo-forked-5h51b?file=/demo.js:701-911

enter image description here

<MaterialTable
      title="Editable Example"
      columns={state.columns}
      data={state.data}
      options={{
        selection: true
      }}
      editable={{
       //Edit Code here
      }}
    />
theWanderer
  • 576
  • 2
  • 10
  • 30

1 Answers1

2

I found the answer... In column just add type:'boolean'. For eg,

    {
      title: "Unit",
      field: "unit",
      type: 'boolean',
      
    },
theWanderer
  • 576
  • 2
  • 10
  • 30