- Issue created by @RichardGaunt
- 🇦🇺Australia RichardGaunt Melbourne
Hi @dhruv.mittal,
Pull requests for this project are done on this repository via GitHub: https://github.com/civictheme/monorepo-drupal
There are three parts to this solution:
Update the civictheme_preprocess_fieldset__form_element__civictheme_field__checkboxes and civictheme_preprocess_fieldset__form_element__civictheme_field__radios
In `civictheme_preprocess_fieldset__form_element__civictheme_field__checkboxes`:We need to change this line:
https://github.com/civictheme/monorepo-drupal/blob/develop/web/themes/co...
And
https://github.com/civictheme/monorepo-drupal/blob/develop/web/themes/co...to check for `#value` rather than `#default_value`
Update the checkbox preprocessing
We need to change the checkbox preprocessing at: https://github.com/civictheme/monorepo-drupal/blob/develop/web/themes/co... to something like this
if ($element['#type'] === 'checkbox') { $variables['control'][0]['is_checked'] = $element['#value'] ?? FALSE; $variables['control'][0]['is_checked'] = (bool) $variables['control'][0]['is_checked']; }
Add some behat tests
We need to add some tests ensuring that in error forms retain their values for checkboxes and radios - Merge request !16Issue #3495607:Update preprocessing of checkboxes. → (Open) created by dhruv.mittal
HI @richardgaunt,
I have done the all the suggested changes.
But I don't know about behat tests, I would love to help if you guide me about them.- 🇦🇺Australia RichardGaunt Melbourne
@dhruv.mittal Could you create the PR from a forked https://github.com/civictheme/monorepo-drupal this way I can review and merge there. Changes from github get pushed up to this repository.
I can review and have behat tests added there.
I have created the pr for the same please review
https://github.com/civictheme/monorepo-drupal/pull/1319- e003a168 committed on 1.x
Issue #3495607 by dhruv.mittal, richardgaunt: Checkbox and Radio Inputs...
- e003a168 committed on 1.x
@richardgaunt thanks for merging the MR, could you please change the issue status to "FIXED".
@dhruv.mittal we will update the status after this work has been tested. Thanks for your contribution.
- Assigned to danielgry
- Status changed to Needs review
about 1 month ago 12:03am 24 February 2025 - 🇦🇺Australia danielgry
Verified and tested on 1.x-dev
Testing Results:
1. Checkboxes and radio inputs retain their selected state after form validation errors
2. Inspected the checkbox input and confirmed the checked attribute is correctly present before data-drupal-selectorScreenshot: