Activities of "thuc.nghiem@techplus.vn"

  • ABP Framework version: v7.4.0
  • UI Type: Angular
  • Database System: EF Core (PostgreSQL)
  • Tiered (for MVC) or Auth Server Separated (for Angular): yes
  • Exception message and full stack trace:
  • book-detail.component.html:1 ERROR TypeError: this.getFn is not a function at LookupSelectComponent.get (volo-abp.commercial.ng.ui.mjs:201:14) at LookupSelectComponent.ngOnInit (volo-abp.commercial.ng.ui.mjs:198:14) at callHookInternal (core.mjs:3836:14) at callHook (core.mjs:3863:13) at callHooks (core.mjs:3818:17) at executeInitAndCheckHooks (core.mjs:3768:9) at refreshView (core.mjs:12467:21) at refreshEmbeddedViews (core.mjs:12563:17) at refreshView (core.mjs:12476:9) at refreshEmbeddedViews (core.mjs:12563:17)
  • Steps to reproduce the issue:
    1. Gen navigation
    1. Adds a navigation with one to many relationship.
    1. UI pick type: Dropdownlist
    1. When Create or Edit item show error abp-lookup-select.

Hello Anjali. My problem is to check if it already exists and prevent it from being saved to the database. Can you provide a solution for me?

  • ABP Framework version: v7.0.1
  • UI Type: Angular
  • Database System: EF Core ( Oracle.)
  • Tiered (for MVC) or Auth Server Separated (for Angular): no
  • Exception message and full stack trace:
  • Steps to reproduce the issue:
ObjectExtensionManager.Instance.Modules().ConfigureIdentity(identity =>
        {
            identity.ConfigureUser(user =>
            {
                user.AddOrUpdateProperty<string>(UserConsts.LoanOfficer,
                    options =>
                    {
                        options.Attributes.Add(new RequiredAttribute());
                        options.Attributes.Add(new StringLengthAttribute(UserConsts.MaxLoanOfficerLength));
                        //options.UI.OnEditForm.IsVisible = false;

                    });
                

                user.Validators.Add(context =>
                {
                   //help check exist??
                });

            });
  });
  • ABP Framework version: v7.0.1
  • UI Type: Angular
  • Database System: EF Core
  • Tiered (for MVC) or Auth Server Separated (for Angular): no
  • Exception message and full stack trace:
  • Steps to reproduce the issue:
  • In default, some users, when logging in, have a dark interface. I want to configure the default interface for all users to be light.

Hello Masum.ulu. I think this is an automated feature, I didn't have to customize it in the code.

Is there anyone who can help me fix this bug?

Thanks!

  • ABP Framework version: v7.0.1
  • UI type: Angular
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no
  • Exception message and stack trace:
  • Steps to reproduce the issue:"
    1. using link: https://docs.abp.io/en/abp/7.0/Module-Entity-Extensions
    1. I add a add enum properties:
  • public enum UserType { Regular, Moderator, SuperUser }
  • identity.ConfigureUser(user => {
    user.AddOrUpdateProperty<UserType>("UserType", property => { property.UI.OnTable.IsVisible = true; } ); });
  1. Edit user show UserType and choise in dropdown and Save success.
  2. But error not show UserType column on table
  • ABP Framework version: v7.0.1
  • UI type: Angular
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no
  • Exception message and stack trace:
  • Steps to reproduce the issue:"
    1. I create two ExtraProperties of AbpUsers table is "LoanOfficer" and "BranchCode"
private static void ConfigureExtraProperties()
    {
        ObjectExtensionManager.Instance.Modules().ConfigureIdentity(identity =>
        {
            identity.ConfigureUser(user =>
            {
                user.AddOrUpdateProperty<string>(UserConsts.LoanOfficer,
                    options =>
                    {
                        options.Attributes.Add(new RequiredAttribute());
                        options.Attributes.Add(new StringLengthAttribute(UserConsts.MaxLoanOfficerLength));

                    });
                user.AddOrUpdateProperty<string>(UserConsts.BranchCode,
                    options =>
                    {
                        options.Attributes.Add(new RequiredAttribute());
                        options.Attributes.Add(new StringLengthAttribute(UserConsts.MaxBranchCodeLength));
                    });
            });
        });

    }
    1. I click a username->My Account -.> Personal info
    1. I want disable or set readonly of ExtraProperties in screen Personal info.
    1. I have Account module.
  • 5, Help me,

The function is now running, thank you!

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