Security menu

Don't know if its something with the latest update, but when I build a new application and implement security, the security menu drops down behind open pages. I can't seem to find out where I can change this.

Do you mean that it goes behind DataGrid headers like this?

image

We reproduced that problem and it is caused by the new RadzenLayout component which is utilized in new Blazor apps. The solution is to include the following CSS rule in styles.css (we will add it to the default theme as well).

.rz-header {
  z-index: 2;
}

That is exactly what I am seeing, thank you!