Activities of "Anjali_Musmade"

Hello

Can you please check this similar issue https://abp.io/support/questions/8217/SystemSecurityCryptographyCryptographicException-The-system-cannot-find-the-file-specified it will helps you.

Thank you.

Answer

Hello ,

Open the GlobalFeatureConfigurator class in the Domain.Shared project and place the following code to the Configure method to enable all open-source and commercial features in the CMS Kit module.

GlobalFeatureManager.Instance.Modules.CmsKitPro(cmsKitPro =>
{
    cmsKitPro.EnableAll();
});

Please try this code.

Thank you.

Hello

Please check this link https://abp.io/docs/latest/modules/identity#roles

Thank you.

At my side its work Video

Hello

At my side i have check its work fine can you please share some steps to reproduce this issue

Thank you.

Thank you :)

Hello

Please chek this link https://abp.io/support/questions/7298/Angular-Identity-and-Account-form-extensions-set-default-value-using-extra-properties#answer-3a1303f3-aadd-04de-88e5-250c8dbb773f

Thank you

Can you share your sample code and steps to reproduce this issue.

Hello

Can you once try to this code If it is helpful for you.

        options: data =>
            {
                const service = data.getInjected(UserService);
                return service
                    .getList({
                        filterText: '',
                        roleName: UserRole.Admin + ',' + UserRole.CountryManager + ',' + UserRole.LineManager,
                        isFromEditUser: true
                    })
                    .pipe(
                        map((data: UserDto[]) => {
                            const items = data.filter(x => !x.isLockedOut);
                            // Find the user marked as default
                            const index = items.findIndex(x => x.isDefault);
                            const userDefault = index !== -1 ? `${items[index].id}` : null; // Handle case where no default user exists
                            
                            // Return both the options and the default value
                            return {
                                items: items.map(item => ({
                                    key: item.fullName,
                                    value: item.id
                                })),
                                defaultValue: userDefault
                            };
                        })
                    );
            },
        defaultValue: data => data.defaultValue, // Bind the default value here
        isExtra: prop.isExtra,
        // Your validation logic
    });
}

Thank you

Hello

Can you check once appsettings.json and BookStoreHttpApiHostModule.cs file code.

Thank you.

Showing 61 to 70 of 1341 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on October 30, 2025, 06:33