<RadzenTextBox Name="employeeSearch" class="w-100" Placeholder="Search" @oninput="@(args => Change(args.Value.ToString()))" />
I need to access this component and set the text to string.Empty programmatically.
<RadzenTextBox Name="employeeSearch" class="w-100" Placeholder="Search" @oninput="@(args => Change(args.Value.ToString()))" />
I need to access this component and set the text to string.Empty programmatically.
Copyright © 2021 Jogjafile Inc.
I'm not familiar with RadzenTextBox component and its inner working, and am not completely certain that I understand your requirement... However, the following code, using an input text Html element is assigned the value of empty string, at each keystroke ( input event is triggered at each keyboard) on the keyboard.
Now, you may adapt the code above in your sample...OK, I'll do it here: