I have a data I’m trying to initially load into a handson table. The data loads fine when it’s dropped into a regular handsontable, but I have two custom chosen dropdown renders and they have their own data set for the dropdown values. I need to fill these dropdown fields with initial values, how is that done (the data is coming from project_approver_data)
here’s an example of my columns;
{
width: 150,
chosenOptions: {
data: project_approver_data
}
},
{
width: 150,
chosenOptions: {
data: project_approver_data
}
},
{
data: ‘level_1_approvers’,
renderer: customDropdownRenderer,
editor: “chosen”,
width: 200,
chosenOptions: {
multiple: true,
data: L1_approver_data,
}
},
Thanks