When I disable the form, the button component also becomes disabled, but the button group component does not become disabled.
Hello @nsrdl,
In Retool, when a form component is disabled, its child components inherit the disabled state only if they are designed to support it.
The Button Group component in Retool does not automatically inherit the disabled
state from the parent form, unlike standard buttons or input fields.
To resolve this:
- Select the Button Group component.
- In the right-hand panel, locate the βDisabledβ field.
- Manually bind it to the form's disabled state.
{{ form5.disabled }}
This ensures the Button Group respects the form's state as expected.
2 Likes