Hi Radzen team and everyone,
I'm currently using a RadzenListBox `
<RadzenListBox Data="@FilteredUser " @bind-Value="@id" TextProperty="Name" ValueProperty="Id"
Style=" width: 100%; max-width: 400px; height: 200px; padding:1px"
Placeholder="Search by name" />`
private List<User> AllUser = new ();
private List<User> FilteredUser = new ();
I don't want the list box to have any data at the page init, however, is there any way I can filter it using AllUser after user input something? I tried with Onkeychange but seems like not working.