Radzen dialog window without the close [x] box

instead of allowing my users to close a modal dialog by selecting the close [x] box in the windows title bar (just beside the min max buttons), i would like them to click on my form specific Cancel button.

in my online search, i found something like this:

the accepted answer to that issue in the above link was this:

I found this to be a good solution

$("#myDialogID").dialog({
closeOnEscape: false,
beforeClose: function (event, ui) { return false; },
dialogClass: "noclose"
});
Not altering the existing styles, instead adding a new bit:

.noclose .ui-dialog-titlebar-close
{
display:none;
}
Adding the class ended up being quite an elegant method, as i'm "classing" the dialog as one that cannot be closed.

for radzen blazor, what might be the recommended approach?
i'm ok if i can just disable that [x]

thanks for helping

You can use the same approach for our dialog:

.ui-dialog-titlebar-close
{
    display: none;
}

it works!

i downloaded the radzen demo code:

in visual studio, i went to
LatestBlazor solution folder> wwwroot > css > site.css

and modified the first few lines to include the suggested css

a.ui-button:hover {
color: #fff;
text-decoration: none;
}

.ui-dialog-titlebar-close {
display: none;
}

is .ui-dialog-titlebar-close some sort of standard/well-known css class name with an agreed upon meaning? if so, could you recommend a reference link where i could find other such "well-known" css class names? i notice many such .ui-xxx... class names used in radzen and i've been wondering what convention(s) you use.

thank you again for helping!! :slight_smile:

Is there any way to do this with just the confirm dialogs (called by dialogService.Confirm)?

Thanks in advance for any help you can provide!

1 Like

After the CSS class renames in Radzen 3.0 this should now be:

.rz-dialog-titlebar-close
{
    display: none;
}