How to get updated NumericTextBox component value on each key stroke ?
In our NumericTextBox component, the updated component value has been maintained in element. So, if you want to get the updated component values on each key stroke, use the keyup event handler. The following code demonstrates how to get the updated NumericTextBox component values on each key stroke.
<ejs-numerictextbox #numeric [(value)]='numValue' (keyup)="onKeyupMethod($event)"></ejs-numerictextbox>
public onKeyupMethod(){ console.log("NumericTextBox value: "+this.numericObj.element.value); }
Sample: https://stackblitz.com/edit/angular-dbxqge-vtkxbq?file=default.html
To get or set the component values on NumericTextBox, use the value property of the NumericTextBox component.
Conclusion
I hope you enjoyed learning about how to get updated NumericTextBox component value on each key stroke.
You can refer to our JavaScripts Editors JavaScripts Editors feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our JavaScript Editors example to understand how to create and manipulate data.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!