How to enable/disable a dropdown based on checkbox selection inside a repeating list?

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!

yep there’s heaps of answers to this in the fourms look for anything to do with repeating group. basically you need to save the change of the text box to variable array and then if that element in the array is true show the dropdown