Activities of "stjepanh_teched"

Yes, but i would like to set my own DTOs here: AbpCrudPageBase<IIdentityUserAppService, IdentityUserDto, Guid, GetIdentityUsersInput, IdentityUserCreateDto, IdentityUserUpdateDto>

Thank you for your help, now it works. Is it possible for this component to inherit AbpCrudPageBase so I can inject my custom types?

I've managed to make a custom component by the code you provided, but I can't get pass the exception "CustomUserManagement is not assignable to service Volo.Abp.Identity.Pro.Blazor.Pages.Identity.UserManagement".

I also tried to do the most simple case - basic component with plain html just to try replacing the UserManagement, but I get the same exception. This is the basic component:

@page "/identity/users"

@using Volo.Abp.Identity

@inherits AbpCrudPageBase<IIdentityUserAppService, IdentityUserDto, Guid, GetIdentityUsersInput, IdentityUserCreateDto, IdentityUserUpdateDto>

@attribute [Volo.Abp.DependencyInjection.ExposeServices(typeof(Volo.Abp.Identity.Pro.Blazor.Pages.Identity.UserManagement))]
@attribute [Volo.Abp.DependencyInjection.Dependency(ReplaceServices = true)]

<h3>TestUserManagement</h3>

What am I doing wrong?

Is it possible to change existing property visibility on the UI? We've followed the instructions in the ModuleExtensionConfigurator - configuring visibility of the new properties works but configuring existing (predefinied) properties doesn't. Example:

You need custom the UI, see https://docs.abp.io/en/abp/latest/UI/Blazor/Customization-Overriding-Components , I can send you the UI source code if you need.

Can you please send the source code so we can fix it quicker?

The extended UI does not support client-side validation.

By overriding the UI, I can also get the client side validation? If that is correct, can you please also provide source code of the Identity module Edit modal?

Thank you very much for your help.

Is it possible to remove existing property from identity module? For example, we don't need phone number property in our project, how can we remove it?

You can download the module source code to customize, but we do not recommend it.you can just ignore it

How to remove it than from the UI? Third item in original question is dealing with that question.

How to enable client side validation for the property? We've set required attribute with the following: property.Attributes.Add(new RequiredAttribute());

What UI are you using?

We are using Blazor UI.

Showing 1 to 5 of 5 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11