I was looking at FieldSet/Field for some form controls I'm building which have two-tier labels, one for the name of the field (a short, one or two word label) and then a longer description that explains the functionality in greater detail. My understanding of ARIA approaches for these kinds of form fields is that the input element holds both an ID for the htmlFor and then an aria-describedby which points to the longer description. This results in screen-readers reading both (first the label, then a short pause, then the longer description)
Has this been considered for Field.HelperText, would it make sense? Thanks!
I was looking at FieldSet/Field for some form controls I'm building which have two-tier labels, one for the name of the field (a short, one or two word label) and then a longer description that explains the functionality in greater detail. My understanding of ARIA approaches for these kinds of form fields is that the input element holds both an ID for the
htmlFor
and then anaria-describedby
which points to the longer description. This results in screen-readers reading both (first the label, then a short pause, then the longer description)Has this been considered for Field.HelperText, would it make sense? Thanks!