I'm stuggling since a couple of day with that problem.
I have 2 pages where I put Radzen Dropdown component, that doesn't close when I select a value.
I try to copy/paste an exemple from Radzen component page into a new page in my application, same problem.
I creat a new Radzen Blazor application from scrtch and compy paste exact same dropdoan into a new page and it works.
In the faultyu application, I isolated the layout, remove own CSS, tried everything that come to my mind, but nothing works.
Even chatgpt/deepseek/copilot/perplexity are not able to help...
It is something linked to my project but I have no idea on what it could be.
Is someone could help please?
@page "/test-dropdown"
<RadzenDropDown TValue="int"
Data=@companyNames
TextProperty="Name"
ValueProperty="Id"
Change="OnCompanyChanged"
Style="width: 300px" />
<p>Selected: @value</p>
@code {
private int? value;
private List<Company> companyNames = new()
{
new Company { Id = 1, Name = "Alpha" },
new Company { Id = 2, Name = "Beta" }
};
private void OnCompanyChanged(object value)
{
Console.WriteLine($"Selected: {value}");
this.value = (int?)value;
}
public class Company
{
public int Id { get; set; }
public string Name { get; set; }
}
}
Of course I have no js error in browser console, or app console, Raden is just updated on its last version
Radzen version I use is 7.0.5.0, previous was 7.0.3.0, do I need to upgrade theme and if yes, what is the process? I read the link upward bu it's just the changelog
There was no theme change between 7.0.3 and 7.0.5. However I think it didn't work with 7.0.3 either. You have a custom theme which is outdated. We don't have a procedure for updating custom themes - you probably need to build it from the source as you originally did.
Hum, ok, thanks, problem is tht it's not me that buid that them, I know my coleague used SCSS files do I have to replace some files in the solutions? And if yes, what files and wher I get it. Sorry but I'm backend developper doing front end, and I don't knwo how to mange this.