How to bind value on input in the TextBox

Hello @Team.

I'm trying to bind a text box value as I write, hooked to the oninput event of the control. How can I achieve that without binding a custom method to oninput?

It seems that the current TextBox implementation doesn't allow changing the bind:event to oninput. Also, it would be nice to have a exposed OnInput event just like the Change event.

The only way to do that is by handling @oninput. We decided not to support it out of the box as it had known latency issues - the value can get reset while the user is typing too fast and there is high latency. The linked issue is marked as closed but I am not 100% sure it works in all cases. Also @bind:event does not work for any custom component - even Microsoft's InputText does not support it.