Angular mat-selection-list, How to make single checkbox select similar to radio button?

后端 未结 14 1705
北恋
北恋 2021-02-18 21:22

How to make make single checkbox select from mat-selection-list. Similar to radio button which accepts one value from group of values.

14条回答
  •  广开言路
    2021-02-18 21:47

    Just set the multiple option of MatSelectionList to false:

    ngOnInit() {
      this.links.selectedOptions._multiple = false;
    }
    

    and you're done. Also by doing this you will be able to deselect the selected checkbox.

提交回复
热议问题