Activities of "liangshiwei"

Hi,

you can override the OnRedirectToIdentityProvider method and change the redirect URL

var previousOnRedirectToIdentityProvider = options.Events.OnRedirectToIdentityProvider;
options.Events.OnRedirectToIdentityProvider = async ctx =>
{
    you can change the RedirectUri here
    ctx.ProtocolMessage.RedirectUri = ....;

    if (previousOnRedirectToIdentityProvider != null)
    {
        await previousOnRedirectToIdentityProvider(ctx);
    }
};

Can you reproduce it in a new project?

abp new Testapp

Hi,

Of course, you can.

https://abp.io/docs/latest/framework/ui/blazor/entity-action-extensions

Add a new entity action, you get the userId from the current data row

Hi,

Try setting the dictionary key to ‘new object()’ just like the snapshot debugger is doing. Example:

I will check if it is a bug of ABP.

Can you try this?

Re-generate the openiddict.pfx file.

We use dotnet dev-certs https to generate the pfx file.

dotnet dev-certs https -v -ep openiddict.pfx -p YOURPASSWORD

Hi,

I didn't see any debug-level logs

Hi,

You don't need to add @page "/identity/users"

https://abp.io/docs/latest/framework/ui/blazor/customization-overriding-components

CustomUserManagement.razor

@inherits UserManagement

...My page

CustomUserManagement.razor.cs

[ExposeServices(typeof(UserManagement))]
[Dependency(ReplaceServices = true)]
public partial class CustomUserManagement
{

}

Hi,

Could you share your code screenshots?

We use Excubo.Blazor.TreeViews libary, you can install it and add the import to the import.razor

Hi,

I've installed Blazorise.Treeview lib , with the Excubo.Blazor.TreeViews class.

Please remove Blazorise.Treeview

Showing 131 to 140 of 6692 entries
Learn More, Pay Less
33% OFF
All Trainings!
Get Your Deal
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on September 10, 2025, 06:30