mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-01 11:58:04 +00:00
Avoid keeping text after selecting item
This commit is contained in:
parent
66dceefcf0
commit
cac185634d
@ -80,9 +80,14 @@ export class AjaxSelect extends InheritedComponent<"select"> {
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Allow removing selected items by clicking on them
|
||||||
this.widget.on("item_select", (item: TomItem) => {
|
this.widget.on("item_select", (item: TomItem) => {
|
||||||
this.widget.removeItem(item);
|
this.widget.removeItem(item);
|
||||||
});
|
});
|
||||||
|
// Remove typed text once an item has been selected
|
||||||
|
this.widget.on("item_add", () => {
|
||||||
|
this.widget.setTextboxValue("");
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user