I do have another multi-checkbox working fine, but that has static values and is not actually part of a repeating table, rather it sits in the footer below a chart…
Let’s see if this helps you. I mocked up a quick sample of a dynamic repeat within a checkbox group, that feeds another server connect as a GET parameter (list).
Make sure the checkbox input is setup to be an array by placing a left square bracket, then a right square bracket (looks like a vertical rectangle below:
You global var still looks wrong to me. Create a new var, name it weeknum, and click multiple. To be precise the data type should match your db column data type, but text or num might actually work. I don’t believe the other things you mentioned are impacting results.
To troubleshoot first make sure the correct values are being past to the server. You can do this by checking in the dev console. For example, mine looks like this when three items are ticked (see Query String Params at the very bottom):
Once you have the proper comma separated list being sent, you can move to the server side and just set a value of the $_GET param and make sure it matches.
Sorry to have ditched you last night – back at it today!
What you are attempting to attain is getting your checkbox input elements to be within a checkbox group. And then the checkbox group will contain the array of values for your server connect.
Just recalled that in Bootstrap 4 settings - you shouldn’t use the App Connect Input Group directly, but instead change the type of the Bootstrap Form Group to be of the type input group:
This way you can keep the Bootstrap 4 nesting structure.
Ahh. Yes, you’re correct. Using a horizontal form group set to be a checkbox group makes this all doable within the UI. Just confirmed for Phil the example above works. Thanks George.