Good evening, I've been looking at the documentation for the Chip component but I don't see information on how to disable a specific chip from the list
function enabledDisabledChip(idChipList,valueSelect,flag)
{
var chipsList = document.getElementById(idChipList).ej2_instances[0];
chipsList.chips.forEach(function (chip,index) {
if(chip.value == valueSelect)
{
chip.enabled= flag;
}
});
}
In the angular documentation I think I have seen that you can disable the component