Reputation: 11
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
Upvotes: 1
Views: 250
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