Radzen HtmlEditor placed in bootstrap modal, z-index on popup?

Hi!

I have an bootstrap popup-modal in Blazor where the user could edit some text in Radzen HtmlEditor. But I got some problems with z-index, if the user for example click on add link, this dialog won't appear in front, it stays behind my popup-modal.

Is there an easy way to change z-index for RadzenDialog?

Yes, you can use CSS to change everything in Radzen.

.rz-dialog {
  z-index: 10000 !important;
}
1 Like