You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: vaadin-checkbox-flow-parent/vaadin-checkbox-flow-integration-tests/src/main/java/com/vaadin/flow/component/checkbox/tests/RefreshDataProviderPage.java
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,7 @@ public class RefreshDataProviderPage extends Div {
30
30
31
31
publicRefreshDataProviderPage() {
32
32
CheckboxGroup<String> group = newCheckboxGroup<>();
Copy file name to clipboardExpand all lines: vaadin-checkbox-flow-parent/vaadin-checkbox-flow-integration-tests/src/test/java/com/vaadin/flow/component/checkbox/tests/RefreshDataProviderPageIT.java
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -40,4 +40,16 @@ public void resetComponentOnDataProviderRefresh() {
Copy file name to clipboardExpand all lines: vaadin-checkbox-flow-parent/vaadin-checkbox-flow/src/main/java/com/vaadin/flow/component/checkbox/CheckboxGroup.java
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -459,7 +459,9 @@ private void reset() {
459
459
// Cache helper component before removal
460
460
ComponenthelperComponent = getHelperComponent();
461
461
keyMapper.removeAll();
462
-
removeAll();
462
+
// Remove all known children (doesn't remove client-side-only children
Copy file name to clipboardExpand all lines: vaadin-radio-button-flow-parent/vaadin-radio-button-flow-integration-tests/src/main/java/com/vaadin/flow/component/radiobutton/tests/RefreshItemsPage.java
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,7 @@ public class RefreshItemsPage extends Div {
29
29
30
30
publicRefreshItemsPage() {
31
31
RadioButtonGroup<String> group = newRadioButtonGroup<>();
Copy file name to clipboardExpand all lines: vaadin-radio-button-flow-parent/vaadin-radio-button-flow-integration-tests/src/test/java/com/vaadin/flow/component/radiobutton/tests/RefreshItemsPageIT.java
Copy file name to clipboardExpand all lines: vaadin-radio-button-flow-parent/vaadin-radio-button-flow/src/main/java/com/vaadin/flow/component/radiobutton/RadioButtonGroup.java
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -421,7 +421,9 @@ private void reset() {
421
421
// Cache helper component before removal
422
422
ComponenthelperComponent = getHelperComponent();
423
423
keyMapper.removeAll();
424
-
removeAll();
424
+
// Remove all known children (doesn't remove client-side-only children
0 commit comments