Skip to content
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

Element.removeProperty should fire PropertyChangeEvent if property was removed #3994

Open
Legioth opened this issue Apr 25, 2018 · 3 comments · Fixed by #19196
Open

Element.removeProperty should fire PropertyChangeEvent if property was removed #3994

Legioth opened this issue Apr 25, 2018 · 3 comments · Fixed by #19196

Comments

@Legioth
Copy link
Member

Legioth commented Apr 25, 2018

No description provided.

@pleku pleku added this to the 1.0 Maintenance milestone Apr 30, 2018
@denis-anisimov denis-anisimov self-assigned this Apr 30, 2018
denis-anisimov pushed a commit that referenced this issue Apr 30, 2018
denis-anisimov pushed a commit that referenced this issue May 2, 2018
caalador pushed a commit that referenced this issue May 2, 2018
@gilberto-torrezan gilberto-torrezan modified the milestones: 1.0 Maintenance, 1.0.1 Jul 11, 2018
mshabarov pushed a commit that referenced this issue May 2, 2024
Removing element property by calling com.vaadin.flow.internal.nodefeature.AbstractPropertyMap#removeProperty does not trigger property change listener because of com.vaadin.flow.internal.nodefeature.ElementPropertyMap#remove method is skipped due to AbstractPropertyMap#removeProperty method calls super:

    public void removeProperty(String name) {
        super.remove(name);
    }

Fixes #3994
@mshabarov
Copy link
Contributor

Reopened, as #19310 has been reverted due to regressions in Flow components.

@vaadin-bot
Copy link
Collaborator

This ticket/PR has been released with Vaadin 24.4.0.beta2 and is also targeting the upcoming stable 24.4.0 version.

@vaadin-bot
Copy link
Collaborator

This ticket/PR has been released with Vaadin 24.5.0.alpha1 and is also targeting the upcoming stable 24.5.0 version.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment