How to make a 'mat-select' readonly?

前端 未结 2 2151
悲哀的现实
悲哀的现实 2021-02-13 03:00

I am working on a angular 5 project. There are many mat-select elements which is supposed to be readonly like text boxes. I found out that there is a disabled

2条回答
  •  轮回少年
    2021-02-13 03:30

    Add CSS to both select block and mat-form-field block, these can be applied automatically to all the select elements:

    
      
        Option 1
        Option 2 (disabled)
        Option 3
      
      
    

    CSS code:

    .readonly-wrapper {
        cursor: not-allowed;
    }
    
    .readonly-wrapper .readonly-block {
        pointer-events: none;
    }
    

提交回复
热议问题