I am implementing the following - https://handsontable.com/docs/8.4.0/demo-dropdown.html
In this the setting is
{
type: ‘dropdown’,
source: [‘yellow’, ‘red’, ‘orange’, ‘green’, ‘blue’, ‘gray’, ‘black’, ‘white’]
},
My use case requires dropdown values based on values available in another cell.
For eg:
dropdown1: [“year”, “week”, “months”]
dropdown2: should display values selected from a cell which has values from dropdown1. If year is selected in cell1, the cell2 should display list of years.