
This commit updates the docs examples to be compatible with the `no-angle-bracket-type-assertion` tslint rule. This is in preparation of updating the docs examples `tslint.json` to match the one generated for new Angular CLI apps in a future commit. PR Close #38143
34 lines
812 B
TypeScript
34 lines
812 B
TypeScript
import { Component, ViewChild, ElementRef } from '@angular/core';
|
|
|
|
|
|
@Component({
|
|
selector: 'app-root',
|
|
templateUrl: './app.component.html',
|
|
styleUrls: ['./app.component.css']
|
|
})
|
|
export class AppComponent {
|
|
|
|
@ViewChild('bindingInput') bindingInput: ElementRef;
|
|
|
|
isUnchanged = true;
|
|
|
|
getHTMLAttributeValue(): any {
|
|
console.warn('HTML attribute value: ' + this.bindingInput.nativeElement.getAttribute('value'));
|
|
}
|
|
|
|
getDOMPropertyValue(): any {
|
|
console.warn('DOM property value: ' + this.bindingInput.nativeElement.value);
|
|
}
|
|
|
|
working(): any {
|
|
console.warn('Test Button works!');
|
|
}
|
|
|
|
toggleDisabled(): any {
|
|
|
|
let testButton = document.getElementById('testButton') as HTMLInputElement;
|
|
testButton.disabled = !testButton.disabled;
|
|
console.warn(testButton.disabled);
|
|
}
|
|
}
|