We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30888d1 commit c97f8a5Copy full SHA for c97f8a5
gwt-material/src/main/java/gwt/material/design/client/ui/MaterialChipContainer.java
@@ -50,6 +50,14 @@ protected void onLoad() {
50
chipHandler.load();
51
}
52
53
+ @Override
54
+ protected void onUnload() {
55
+ super.onUnload();
56
+
57
+ chipList.clear();
58
+ selected.clear();
59
+ }
60
61
protected void add(Widget child, Element container) {
62
super.add(child, container);
63
@@ -124,6 +132,7 @@ public void toggle(MaterialChip chip) {
124
132
125
133
public void clearActive() {
126
134
chipList.forEach((c) -> c.setActive(false));
135
127
136
128
137
129
138
public void collapse() {
0 commit comments