Activities of "masum.ulu"

Hi, I'll check and fix that

Hi,

On angular side you can patch the menu items can you please check document: https://docs.abp.io/en/abp/latest/UI/Angular/Modifying-the-Menu

Even if you patch the menu in UI, you can't directly move this on permission modal because it comes from backend in c# identity module.

If you want to prevent this you can create a new role without user management permissions. The moving is not the correct solution in that case

Hello Noura,

It's because of our oauth package that we use for auth system. We'll fix that I refunded your credit

Answer

Hi Noura,

You can add localization resource from client side please check document if you want you can use this method as workaround until you update. We'll add resource to backend. I've refunded your credit

Hi Noura,

I've solved the problem, when the patch version release it'll fixed.

You can track the detail at here

https://github.com/abpframework/abp/pull/17981 here's PR

Hi Can,

I've reproduced your case, you right it should also check with ; semicolon at the end. But when the app opening first time at the cookies, only have 2 item. That's why we should also check for without ; I've updated code as below

protected checkCookieConsent() {
  const decodedCookies = decodeURIComponent(this.document.cookie);
  this.showCookieConsent = !decodedCookies.includes(`${this.cookieKey}=true`);
}

It'll solve problem at 7.4.1 I've refunded your credit

Hello we've created issue https://github.com/abpframework/abp/issues/17923 we'll fix. I'll refund your credit after reproduce

Hello sudhakiran,

With the 7.4 version we're using authorization code flow which means auth process will be continue on the browser (server side), If you still want to use client side (password code flow) I'll try to re-produce and I'll reply the solution.

You can check the detail on Our YouTube live session

Hello jtallon,

I've re-produced your case, we've created a issue, I also refunded your credit,

You can fix the problem with the giving correct service. ServiceNameDetailViewService extended an abstract service and in this service there is a injected service as public readonly proxyService = inject(OrderService); can you please use this service in the template for the lookup-select components

Example

<abp-lookup-select
  cid="order-situation-id"
  formControlName="situationId"
  [getFn]="service.proxyService.getSituationLookup"
></abp-lookup-select>

[UPDATED 10/17/23]


Alternatively you can use this way

product-detail.abstract.service.ts

 public readonly proxyService = inject(ProductService);
 
 public readonly getSituationLookup = this.proxyService.getSituationsLookup();
Showing 71 to 80 of 219 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 20, 2024, 08:30