Multiple dependent selects in a table - variables/inputs not honored for server connect load

Thanks for taking the time to reply. That option works when you have a single select box that you are refreshing based on a selected value, not if you have multiple select boxes that you need to bind independently. I did find a tutorial on creating nested tables which would work for my use case but in this instance, I think it would not be performant to refresh all rows/options every time a user changes a drop-down box (and then because it’s a form, I have to save it every time a change is made.)

For context, in my app, the user is creating steps for a data integration process. The user adds a step and selects the step type (Get Data, Save Data, etc.) Then once they select the step type, a second drop-down appears which allows them to select the details for the step (i.e. if they are getting data, they select a data source, if they are saving data, they select a destination.)

So far I haven’t found a thread on binding a select box to a dynamic api call. (I was able to get a dynamic server connect to run, but wasn’t able to bind it to a select box. The properties on the dynamic server connect didn’t match the static server connect. For example, if I called the fetch() method on the SC via javascript it would retrieve the data but it didn’t run unless it was called via javascript and ultimately I could never get the binding to work on the select.)

BTW - I’ve also seen many of your tutorials and thank you for doing that. They are excellent and I appreciate your contributions to the community.