Hello,
I have MauiBlazor Hybrid project and I try to call dialog service for open similar RadzenLogin which is in separate razor file LoginDialog.razor. For Login operations I have LoginDisplay.razor file which i call dialog service from:
and I have builder.Services.AddRadzenComponents(); in MauiProgram.cs of course. But nothing happens and and LiginDialog desn't open.
Where is the problem?
Thanks.
Thanks, I really omitted it. When tried to add <RadzenComponents @rendermode="InteractiveAuto" />
according to Your Getting started I got error "The name 'InteractiveAuto' does not exist in the current context".
So I mede it like:
Then the command Auth_mdl cur_user = await DialogService.OpenAsync<LoginDialog>("Prihlásenie", null, new DialogOptions() { Width = "1024px", Height = "auto", Draggable = true, Resizable = true, ShowClose = true });
called the LoginDialog.razor and i got to the breakpoint in Initialize method. Then the dialog is rendered, but it disappears immediately. I suppose, render mode is bad.
My code LoginDialog:
I got it. FYI the problem was that I called Login method (Task) from html hyperlink. That is code which calls Dialog service.
When I marked it as a comment and used the RadzenButton, then the flow works.