Is there a way to clear the chiplist items using jquery. Can populate, however have not found a way to clear list.
1 Answer, 1 is accepted
0
Mihaela
Telerik team
answered on 27 Mar 2023, 01:06 PM
Hello Richard,
The ChipList supports the remove() API method that allows you to remove its items.
For example:
var chiplist = $("#chiplist").data("kendoChipList");
var allItems = chiplist.items(); //get all ChipList items' elements
chiplist.remove(allItems); //Remove them