2
votes

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.

2

2 Answers

5
votes

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"
   }       
  },
 ]
-1
votes
 const columns = [
 {
  title: "Name",
  field: "Name",
  lookup:
   {
     1:"John"
     2:"Jessica"
   }       
 ]