I tried that before Teodor but the end result makes the layout look odd.
This is partly because the class class="btn-group btn-group-toggle d-flex flex-wrap flex-grow-1"
is part of the repeat 'div' which this new extra radio button would be outside of.
Because this way of adding an extra radio button will be required on a number of different radio groups I didn’t want to start changing the way the button groups are structured, there are now hundreds of them and they work well.
A weird hack you can try is:
Add the 0 radio inside the repeat as an extra radio button.
So now, when you run the page, all rows will have two radios: a 0 and whatever the actual row value is.
Then, just put a show/hide condition on the radio to show when your occasional condition is true AND $index == 0 (i.e. the first item).
So, then when you run it, first radio repeat will have two radios, a 0 guy and a regular one.
While all other will just show the regular one, since 0 guy is hidden.
Thanks for that @sid, I did get to the stage of adding the '0' inside the repeat and seeing two of everything, but I didn’t think to use that by hiding one set. I will try that now. I don’t think there will be any extra overhead by doing this. Thanks for the suggestion.
That works brilliantly, just what I wanted. I had to take care with the values, ID etc and bit of adjustment regarding the UPDATE query. All works as I want now and so I can use the same style/structure whenever I need this sort of thing. A ‘snippet’ feature now comes to mind!