Hi there,
Working with TextBox component and ValueChanged event I noticed ValueChanged event is not being fired when I start typing into the TextBox component. I know the difference between ValueChanged and ValueChange is that ValueChange is triggered when you focusout the textBox but ValueChanged when the value of the TextBox changes.
Is this a bug? Also I saw there is OnInput event is there any difference with ValueChanged?
Events |
Description |
Arguments |
Input |
Triggers each time when the value of TextBox has changed.
|
|
ValueChanged |
Specifies the callback to trigger when the value changes.
|
|
valueChange |
Triggers when the content of TextBox has changed and gets focus-out.
|
|
Hello,
However if you use SfMaskedTextBox then the ValueChanged event is being fired after typing every character and I have based my application logic on it. Can you explain what is the correct behavior?