Hey everyone
I’m working on a form where I list all the services a team can provide. Each service row has a checkbox (to indicate if the user offers that service) and a corresponding dropdown to select the duration.
What I want to achieve is:
When the checkbox is checked, the dropdown becomes enabled. When it’s unchecked, the dropdown should be disabled.
Since the checkbox and dropdown are part of the same row/collection (I’m using a “Services List” structure, as shown in the screenshot), I was expecting to access the value of the checkbox directly in that context to toggle the dropdown’s enabled state.
But I can’t figure out how to link them correctly per row. Has anyone done something like this or knows a good approach to make it work?
Thanks in advance!