Populating a group of checkboxes based on value of select field

I am making a website that multiple clients need to be able to add events/programs to dynamically. Each program page needs to reference a partner, and based on that partner I am trying to generate a list of locations that partner has.

So right now I have Partners->Partner->Location

When creating a program, there is a select field to select the partner. Can this selection be used to generate a list of locations to be selected on the same page? I haven’t had much luck searching for a solution.

Thank you

Hey, welcome to our forum.

In theory, that’s possible. But the problem is that the options of the second field won’t update before you save the value and reload the page. So you would in fact need a listener that listens for changes in the partner field and injects the options into the locations field dynamically.