Activities of "sumeyye.kurtulus"

Hello, I’m unable to reproduce the issue on my end. Could you please provide the ABP version you’re using in your project, along with the theme you’ve applied?

Hello,

To change the version, please click on Abp Suite located in the top-left corner. In the dropdown menu, you'll find an option to switch versions. Select the stable version 9.2.0 from the list and update your suite accordingly.

If you encounter any issues or the version change does not work, feel free to send me a sample project at sumeyye.kurtulus@volosoft.com, and I will be glad to assist you further.

Hello again, Thank you for sharing the related JSON file. However, I wasn’t able to reproduce the issue on my end.

I recommend updating your Suite version to the stable release 9.2.0, as that might resolve the problem. If the issue persists, I can provide you with a .suite file that may help troubleshoot further.

Please let me know if you'd like me to share that or if you need any additional assistance.

Hello, thank you for providing these details.

Unfortunately, I’m unable to access the JSON file at https://pastebin.com/CHpftErb, so I can’t reproduce the issue on my end.

Additionally, this version should have been updated to 9.0.0 with the latest release.

I’ve also tried clearing the .suite folder to force ABP Suite to fetch a fresh copy, but the issue still persists. For reference, the package.json of the .suite schematics currently shows:

"name": "@volo/abp.ng.suite", "version": "9.2.0-rc.3",

Hello again, and apologies for the delayed response.

Thank you for the additional details—this helps clarify the situation. As previously mentioned, it is not possible to override the settings overlay directly, as it is intended to be replaced in its entirety by design. However, reviewing the source code may still be beneficial if you plan to implement a custom overlay solution.

Please feel free to reach out if you need further assistance or guidance.

I'm glad to hear that the solution worked and everything is running smoothly now!

Regarding your request to refund the ticket allocation, I'm afraid we can't process a refund in this case. Our policy is to refund tickets that are used to report a bug or a problem in our product.

Regards.

Hello again, I am glad to hear that the suggestion worked on your side.

You can check this for the related source code https://github.com/abpframework/abp/blob/3f3788f513a15f63ed0c99891ae51884fffed5a3/npm/ng-packs/packages/feature-management/src/lib/components/feature-management/feature-management.component.ts#L121

Hi! Here's an approach you can follow:

const userNameField = new FormProp<IdentityUserDto>({
  type: ePropType.String,
  name: 'userName',
  displayName: 'New Username',
  id: 'userName',
  autocomplete: 'new-username',
  validators: _ => [Validators.required, Validators.minLength(4)],
});

export function userCreateFormContributor(formProps: FormPropList<IdentityUserDto>) {
  const userNameIndex = formProps.indexOf('userName', (action, name) => action.name === name);
  formProps.dropByIndex(userNameIndex);
  formProps.addByIndex(userNameField, userNameIndex);
}

export const identityCreateFormContributors: IdentityCreateFormPropContributors = {
  [eIdentityComponents.Users]: [userCreateFormContributor],
};

export const identityEditFormContributors: IdentityEditFormPropContributors = {
  [eIdentityComponents.Users]: [userCreateFormContributor],
};

Then, configure your route like this:

// app-routing.module
...
{
  path: 'identity',
  loadChildren: () =>
    import('@volo/abp.ng.identity').then(m =>
      m.IdentityModule.forLazy({
        createFormPropContributors: identityCreateFormContributors,
        editFormPropContributors: identityCreateFormContributors,
      }),
    ),
},
...

Let me know if you need any further help!

Hello again, and thank you for trying the suggestion and reaching out. It would be best if you could create a separate ticket for the issue related to the database provider. This will help us ensure the appropriate person can assist you more efficiently.

We appreciate your cooperation!

Thank you for trying and reaching out again. You can follow this link to see the upcoming releases. Also, that would be the best if you could provide a minimal reproducible example so that I could assist you further on that. You can send it to this address sumeyye.kurtulus@volosoft.com

Showing 181 to 190 of 496 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.1.0-preview. Updated on December 25, 2025, 06:16
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.