I made a fiddle with this example. Example with fiddle.
In the 4th colum there are some cells that I want to disable the write mode and activate the dropdown. Actually I have the dropdown and works well for me but I can keep writing in it and I want to disable this option.
I just want only let the people choose one of these options. In this example the color or Bumber.
I tried this including ReadOnly:
{
data: 'bumper',
type: 'dropdown',
readOnly: true,
source: ['Red', 'Blue', 'Green']
}
But (obviously) disable the whole cell and don't allow edit the cell with the dropdown.