How to get updated NumericTextBox component value on each key stroke ?
This article explains how to get the updated NumericTextBox component value on each keystroke.
In our NumericTextBox component, the updated component value is maintained in
the element. So, if you want to get the updated component values on each
keystroke, use the keyup event handler. The following code demonstrates how to
get the updated NumericTextBox component values on each keystroke.
<ejs-numerictextbox #numeric [(value)]='numValue' (keyup)="onKeyupMethod($event)"></ejs-numerictextbox>
public onKeyupMethod(){ console.log("NumericTextBox value: "+this.numericObj.element.value); }
Refer to the working sample for additional details and implementation: Sample
To get or set the component values on NumericTextBox, use the value property of the NumericTextBox component.
Conclusion
We hope you enjoyed learning about how to get an updated NumericTextBox component value on each keystroke.
You can refer to our JavaScripts Editors JavaScripts Editors feature tour page to learn 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, BoldDesk Support, or feedback portal. We are always happy to assist you!