|
[component.html]
<!-- Render Numeric Textbox -->
<ejs-numerictextbox #numeric value="10" (created)="onCreate($event)"></ejs-numerictextbox>
[component.ts]
@ViewChild('numeric')
public numericObject: NumericTextBoxComponent;
constructor() { }
onCreate() {
this.numericObject.element.addEventListener("input", this.inputChange.bind(this));
}
inputChange(args) {
console.log(this.numericObject.element.value);
}
|