https://codesandbox.io/s/material-demo-forked-5nh9b?file=/demo.js
in this selection how we can disable which all are approved true? we dont want to check them only false we want, is this possible?
https://codesandbox.io/s/material-demo-forked-5nh9b?file=/demo.js
In this when I am selecting all can we do something like only select all which are true and uncheck false while selecting all??I tried disable but still its not working
can we change
editable={{
onRowUpdate: onUpdate,
onRowDelete: onDelete,
}}
Icon of these editable??
without making custom action icon?
<MaterialTable
columns={[
{ title: "Adı", field: "name" },
{ title: "Soyadı", field: "surname" },
{ title: "Doğum Yılı", field: "birthYear", type: "numeric" },
{
title: "Doğum Yeri",
field: "birthCity",
lookup: { 34: "İstanbul", 63: "Şanlıurfa" },
},
]}
data={[
{
name: "Mehmet",
surname: "Baran",
birthYear: 1987,
birthCity: 63,
},
]}
title="Demo Title"
/>