user3463349
user3463349

Reputation: 127

Material UI Table with Drop Down inside a column

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

Answers (2)

Ram Gollapalli
Ram Gollapalli

Reputation: 25

 const columns = [
 {
  title: "Name",
  field: "Name",
  lookup:
   {
     1:"John"
     2:"Jessica"
   }       
 ]

Upvotes: -2

Sushant Shelke
Sushant Shelke

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

Related Questions