- Issue created by @ahmad abbad
- Merge request !16Issue #3513683: Required Validation Issue with ACE Editor Field → (Open) created by ahmad abbad
When using a text area field with the ACE format, the field is marked as required. However, after saving the node and leaving the field empty, no validation error appears, and the field is not flagged as required. Checking the console logs reveals the following error:
field_name[0][value] is not focusable.
This indicates that the required validation is not being properly enforced because the field is hidden or not properly focusable.
Following the guidance from Drupal issue #1954968 → , the required validation should be removed from the hidden field to prevent this issue. Instead, validation should be handled at the JavaScript level or using proper visibility toggling.
Active
2.0
Code