-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
Not render Bootstrap radio label when false #31090
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i think it's intended to still render errors here, which is up for debate in general i believe :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To show the error inside the label as well?
Could you suggest another way to not show the
<label>
when it was set to false?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep :) see #24435, #26167
cc @Nyholm
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok clear 👍 Let's make sure that rule gets preserved. Then the question would be whether a label still should get rendered even when
false
gets passed.The use-case here is that we want to render a custom label, while we want to keep using the Bootstrap theme for rendering the widget.
The problem is that
{{ form_widget(} }}
does render both the widget and the label. By passingfalse
we basically say that userland is responsible for complying to the WCAG2 that the error should be rendered inside the label.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i once suggested to make the split explicit, i.e.
form_label
+form_label_with_errors
this sounds like a violation of concerns already :)
im not sure what path to take. I agree a user could be responsible, and IMHO SF should provide low-level building blocks for it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can't we fix the initial point for now? Display the label if there are errors?
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Both when a value or
false
is passed forlabel
the errors do get rendered. Rendering the errors in the label according to WCAG2 should get preserved.The problem for userland
ChoiceType
implementations; whenlabel => false
is passed, the label value does not get rendered while the<label>
tag does get rendered.So the change I suggest via this PR is to also not render the
<label>
tag whenfalse
is passed. The error message will then bubble up to the parent (that also complies to WCAG2).There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are you sure that errors bubble up?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
friendly ping @rvanlaak
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Have been working on a unit test to verify this, but did not manage to complete that yet.