Check the docs before asking a question: https://docs.abp.io/en/commercial/latest/ Check the samples to see the basic tasks: https://docs.abp.io/en/commercial/latest/samples/index The exact solution to your question may have been answered before, and please first use the search on the homepage. Provide us with the following info:
this is from site...users are correctly visible/paged
this is from the mobile maui app...the LoadMore button is not visibile/present
From the generated code in file IdentityUserPageViewModel.cs this is the check CanLoadMore = result.Items.Count >= Input.MaxResultCount;
which I think should be (in GetUsersAsync()) CanLoadMore = result.TotalCount >= Input.MaxResultCount;
and (in LoadMore()) CanLoadMore = result.TotalCount >= Input.SkipCount + Input.MaxResultCount;
Besides the effectiveness of the above check, even if CanLoadMore is true, button is still not visible
thanx
Hi, I need to execute some custom code after the user has succesfully logged in the system (basically I need to load some user-dependent constants) I couldn't find any info about doing this, can you help me? Best regards
Hi, I'm developing a blazor wasm application and I'm having a problem at login time. The app seems to hang for about 10seconds after login
from the logs, this is the point where the problem arise
2023-03-06 10:04:29.833 +01:00 [INF] Executed action Volo.Abp.OpenIddict.Controllers.AuthorizeController.HandleAsync (Volo.Abp.OpenIddict.AspNetCore) in 82.2525ms 2023-03-06 10:04:29.834 +01:00 [INF] Executed endpoint 'Volo.Abp.OpenIddict.Controllers.AuthorizeController.HandleAsync (Volo.Abp.OpenIddict.AspNetCore)' 2023-03-06 10:04:29.835 +01:00 [INF] Request finished HTTP/2 GET https://localhost:44325/connect/authorize?client_id=Checklist_Blazor&redirect_uri=https%3A%2F%2Flocalhost%3A44374%2Fauthentication%2Flogin-callback&response_type=code&scope=openid%20profile%20Checklist%20roles%20email%20phone&state=bcd28bf376f248358f5ca5d59e0cf32e&code_challenge=N0lv-lkZuh1fU2NCGOpswVgDHltlLMyGcbk1QMDW_mw&code_challenge_method=S256&response_mode=query - - - 302 - - 103.4357ms
2023-03-06 10:04:39.470 +01:00 [INF] Request starting HTTP/2 GET https://localhost:44325/.well-known/openid-configuration - - 2023-03-06 10:04:39.471 +01:00 [INF] CORS policy execution successful. 2023-03-06 10:04:39.471 +01:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. 2023-03-06 10:04:39.471 +01:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. 2023-03-06 10:04:39.471 +01:00 [INF] The request URI matched a server endpoint: "Configuration".
How can I solve this issue? thanx