We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When disabling an invisible button and making it visible again the following warning pops up every time:
2025-02-06T10:13:16.302+01:00 WARN 22944 --- [nio-4200-exec-4] c.v.f.s.c.ReturnChannelHandler : Ignoring update for disabled return channel: {"type":"channel","node":4303,"channel":2,"args":[null]}
This does not happen for Span. This also happens when the visibility of a parent component changes.
No warnings when changing visibillity and/or changing enabled state of buttons from server side code.
@Route(value = "") public class MainRoute extends VerticalLayout { public MainRoute () { Button b1 = new Button("visi"); Button b2 = new Button("enab"); Button b3 = new Button("1"); b1.addClickListener(buttonClickEvent -> b3.setVisible(!b3.isVisible())); b2.addClickListener(buttonClickEvent -> b3.setEnabled(!b3.isEnabled())); add(b1, b2, b3); } }
Vaadin version(s): 24.6.4
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
When disabling an invisible button and making it visible again the following warning pops up every time:
2025-02-06T10:13:16.302+01:00 WARN 22944 --- [nio-4200-exec-4] c.v.f.s.c.ReturnChannelHandler : Ignoring update for disabled return channel: {"type":"channel","node":4303,"channel":2,"args":[null]}
This does not happen for Span.
This also happens when the visibility of a parent component changes.
Expected outcome
No warnings when changing visibillity and/or changing enabled state of buttons from server side code.
Minimal reproducible example
Steps to reproduce
Environment
Vaadin version(s): 24.6.4
Browsers
No response
The text was updated successfully, but these errors were encountered: