I have a handsontable with several rows, in each of them, there are editable cells, in each of these cells, there is a select.
Could the select be made to be automatically displayed when the cell is in edit mode? Without having to press first to edit, and press again to display the select.
This is the definition of an example column:
data: 'tracking',
readOnly: true,
editor: 'select',
renderer: utilsHandson.renderValue,
selectOptions: ['A', 'B'],
className: 'editable'
Thank you!