How to remove the check box in the lists

一个人想着一个人 提交于 2020-02-06 03:37:37

问题


I got this stackblitz example for lists with selection as shown in below image.

In the selection list,the list is selecting fine but how can i remove the checkbox?


回答1:


add display:none for this

I have create a demo on Stackblitz

.css /.sccc

:host {
    ::ng-deep.mat-pseudo-checkbox{
      display: none !important;
    }
}


来源:https://stackoverflow.com/questions/51942439/how-to-remove-the-check-box-in-the-lists

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!