How to use 'html textbox readonly' in JavaScript

Every line of 'html textbox readonly' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
60@Input() set readonly(value: boolean) {
61 this.isReadOnly = value;
62
63 if (this.textarea) {
64 if (value) {
65 this.textarea.readonly();
66 this.isReadOnly = true;
67 } else {
68 this.textarea.enable();
69 this.isDisabled = false;
70 this.isReadOnly = false;
71 }
72 }
73}

Related snippets