Activities of "SafaFINDIK"

Hi, I checked the value of HttpApiHostProjectDirectory you mentioned and It is not null. There is only one option if the project is loaded correctly. But I did its installation by cloning it via GitLab. Therefore, I do not think it is wrong. For what other reason could I be getting the error?

  • ABP Framework version: v4.4.2
  • UI type: Angular & Dotnet Core 5.0
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): yes
  • Exception message and stack trace:Failed to load resource: the server responded with a status of 403 (Forbidden)
  • Steps to reproduce the issue:"

Hello Abp Support, I installed ABP Suite version 4.4.2 on my computer. However, when I want to open an existing solution, I am getting the following error you may see its screenshot below. Some of my coworkers are also getting the same error. This significantly limits our works. I would appreciate your help. Thank you.

Kind regards,

Screenshot:

Hello,

Please remove the following route configuration from your app-routing.module.ts. Because IdentityExtendedModule has this logic. And please remove theentity-action-contributors.ts placed in the app folder.

{ 
    path: 'identity', 
    loadChildren: () =>  
       import('@volo/abp.ng.identity').then(m =>  
           m.IdentityModule.forLazy({ 
               entityActionContributors: identityEntityActionContributors 
           }) 
       )) 
} 

You can follow the same steps for "Adding quick view button to actions"

  • Define a method named 'requestMyApi' in IdentityExtendedComponent and implement like following
requestMyApi(record: IdentityUserDto) { 
    this.myService.myRequestMethod().subscribe(res => { 
        console.log(res) 
    }); 
} 
  • In your action definition inject IdentityExtendedComponent and execute this method.
const printButtonAction = new EntityAction<IdentityUserDto>({ 
  text: 'PrintButton', 
  action: data => { 
    const component = data.getInjected(IdentityExtendedComponent); 
    component.requestMyApi(data.record); 
  }, 
}); 

Hello, I added it to my code as follows according to your directives. Is it supposed to be like this?

Screenshot:

Or is it supposed to be like in Screenshot2 ? Screenshot2:

But with both ways i couldn't reach requestMyApi. :(

  • ABP Framework version: v4.4.2
  • UI type: Angular & Dotnet Core 5.0
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): yes
  • Exception message and stack trace:
  • Steps to reproduce the issue:"

Hello Abp Support, I am using Abp Framework Commercial. I added a button named as "Print Button" inside of Options. I successfully displayed it( You can see it on the first screenshot). I want to send a request to api(/api/user/print/) in the (aspnetcore) project that I have created when the relevant button is clicked, but I could not find a solution for my problem. I would appreciate your help. Thank you.

Screenshots 1- 2- 3- 4- 5-

Kind regards,

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