First of all, just want to say I love weweb! I enjoyed Dreamweaver in the past, and it reminds me of it.
What is your advice on how to create radio button that can have an associated image for each option? I want it to have either text or image, depending on the data. The OOB radio button works really well and easy to implement with text, but I think with images, I might need to implement individual radio buttons of some sort, handle the selection and adding image elements for each. Any suggestions are appreciated! Thank you!
Welcome @jalbautista
Easiest way would be to create a component in WeWeb. This way, you can scope the logic associated to it. I would expose a list prop that takes in an id, label and image_url. You can condition the visibility of your elements depending on your data.
That would mean creating all from scratch (visual states, logic). And some accessibility features might be tricky to add (keyboard navigation for instance)
The other path would be to create a custom component where you’d have more control over everything.