Hi Radzen team,
I deployed the code of the following Blazor server page to Azure App Service and verified its operation.
@page "/test"
@rendermode InteractiveServer
<PageTitle>Immediate Test</PageTitle>
<h1>Immediate Test</h1>
<p></p>
<RadzenTextArea
class="w-100 rz-pb-0 rz-m-0"
@bind-Value="prompt1"
Immediate="true"
Rows="4" />
<RadzenTextBox
class="w-100 rz-pb-0 rz-m-0"
@bind-Value="prompt2"
Immediate="true" />
@code {
string prompt1 = "";
string prompt2 = "";
}
For languages that use IME, such as Japanese, input sometimes interferes with IME operation, causing characters to be duplicated.
For example, I typed in Japanease “aiueo”, but what was displayed was "aiaiueo" with the characters "ai" duplicated.
This issue does not occur when using languages like English, which do not use IME.
Also, this issue does not occur in Japanese when running locally, but it always occurs when running on Azure App Service.
This issue occurs with both RadzenTextArea and RadzenTextBox.
