Add input event

Please add an input event like the MaskedTextBox/TextBox

My team has an immediate need to capture input as it's typed and we'd rather use the syncfusion control model events.

3 Replies

SN Sevvandhi Nagulan Syncfusion Team February 25, 2020 06:26 AM UTC

Hi Mike,  

Greetings from Syncfusion support.  

We have considered the this requirement as feature in the NumericTextBox and this support will be included in any of our upcoming main releases. You can track the details of this feature from the below feedback link,   


Until then we suggest to use the native input event as mentioned below code snippet,  
 
    created: function() {  
        document.getElementById('numeric').addEventListener('input', function (e) {  
            console.log("Input event triggered");  
        })  
    }  
 

Regards,  
Sevvandhi N  




MS Mike Stankovich February 25, 2020 12:40 PM UTC

Thank you, 

That is exactly what we planned to do in the short term


SN Sevvandhi Nagulan Syncfusion Team February 26, 2020 03:50 AM UTC

Hi Mike , 
  
Thanks for the update. Please let us know if need any further assistance on this. 
  
Regards, 
Sevvandhi N 
  


Loader.
Up arrow icon