Using following code, I was able to implement dropdown on certain rows and columns
hot1.updateSettings({ cells: function (row, col, prop) { var cellProperties = {}; if (row === 7 && (col >= 3 && col <= 8)) { cellProperties.type = 'autocomplete'; cellProperties.source = ['yellow', 'red', 'orange', 'green', 'blue', 'gray', 'black', 'white']; strict: true; }
How to implement further calculation?
For example, if red is selected, somewhere to multiple value 100, green with value 80, etc.