Can someone please explain to me how the dropdown_data property works. Can I add a dropdowns on specific rows with this?
If I do:
dropdown_data=[{
'climate': {
'options': [
{'label': i, 'value': i}
for i in df['climate'].unique()
],
}
}]
I get a dropdown on the first row only, under the climate column.
Can I use “dropdown_data” to insert dropdowns on any row I’d like? let’s say, the 2nd and 4th row only, instead of the 1st. Am I using this correctly?