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 72b131a commit 47c6eb9Copy full SHA for 47c6eb9
gwt-material/src/main/java/gwt/material/design/client/ui/MaterialListValueBox.java
@@ -144,6 +144,7 @@ public OptionElement getOptionElement(int index) {
144
*/
145
@Override
146
public void clear() {
147
+ values.clear();
148
listBox.clear();
149
if (initialized) {
150
// reinitialize
@@ -237,7 +238,6 @@ public void onValueChange(ValueChangeEvent<T> event) {
237
238
239
240
public void setAcceptableValues(Collection<T> values) {
- this.values.clear();
241
clear();
242
243
for(T value : values) {
0 commit comments