#How do I show radio group inside table?
4 messages · Page 1 of 1 (latest)
why not use Checkbox or Switch?
https://mantine.dev/core/checkbox/
https://mantine.dev/core/switch/
if your options are apply and not apply, seems like you want the toggle functionality of either of these components
If you stick to radio buttons, you can use <Radio name="groupName" /> to make radios individually selectable. However, I also recommend using the switch component for this simple case.