How to make make single checkbox select from mat-selection-list. Similar to radio button which accepts one value from group of values.
you can declare the [selected]
attribute of mat-list-option
for example:
{{item.name}}
by this way you reach just one selection without changing any MatSelectionList hidden property.
Also you can do it by replacing ngModel
with controller logic,
by this way you will save the last selection object in class variable.
see also Binding an Angular Material Selection List