AhmetBalaman
AhmetBalaman

Reputation: 11

.net Blazor Radzen DialogService is not working

I have a blazor web application and I am trying to add Radzon. Radzen components all are working but when I am trying to add DialogService.Alert or

await DialogService.OpenAsync<DialogCardPage>("Dialog Card Page", new Dictionary<string, object>()
{
    {
        "LicId", "236a87aa-0dd6-483c-87f2-08dc9b660e4a"
    }
});

it doesn't show up

I did some research and I did all things the same with get starting radzon page.

<RadzenDialog />

I added radzendialog or components in mainLayout.razor too I'm expecting at least something like this showing up

enter image description here

Upvotes: 1

Views: 250

Answers (1)

T.mod
T.mod

Reputation: 11

It doesn't show up probably because you have something wrong in DialogCardPage. Please post DialogCardPage code, and the output from vs when you try to open the dialog.

Upvotes: 0

Related Questions