Reputation: 127
I want to insert a select drop down inside material ui table as part of row. Can you please share a reference as to how to perform this using React.
Upvotes: 2
Views: 3874
Reputation: 25
const columns = [
{
title: "Name",
field: "Name",
lookup:
{
1:"John"
2:"Jessica"
}
]
Upvotes: -2
Reputation: 71
In material able you have a special feature "lookup".
Please refer to the following code:
const columns = [
{
title: "Name",
field: "Name",
value:Name,
lookup:
{
1:"John"
2:"Jessica"
}
},
]
Upvotes: 7