Imagine I have this component:
<input bind-value-oninput="@Name">
<p>Your name is @Name</p>
string _name;
string Name
{
get => _name;
set => _name = value.ToUpper();
}
When I type on the input, is the text is transforming directly to uppercase and showing in the paragraph.
I think (please, correct me if I'm wrong) that server-side Blazor runs the .NET MSIL code on the server and sends the DOM changes via SignalR connection.
The connection to the server can be delayed, specially with poor Internet connections.
In the case of this input, can be transformed to uppercase some seconds after the user input text? In afirmative case, how can I solve it? Only using client-side Blazor?