mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Cleans up all the places where we explicitly set `static: false` on queries. PR Close #33015
33 lines
811 B
TypeScript
33 lines
811 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 = <HTMLInputElement> document.getElementById('testButton');
|
|
testButton.disabled = !testButton.disabled;
|
|
console.warn(testButton.disabled);
|
|
}
|
|
}
|