Activities of "alpisala"

Im trying to use data annotations for validations like the easy-crm sample project but i can't do it.I think the problem is blazorise related.

  • ABP Framework version: :v6.0
  • UI type:Blazor
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): / no
  • Exception message and stack trace:
  • Steps to reproduce the issue:"
  • CurrentDefinition is a DefinitionCreateUpdateDto.

I have seen that post before but i think I didnt give it much attention. Giving TextExpression to TextEdit fixed it for me. Thank you.

https://support.abp.io/QA/Questions/1567/Docs-Menu-Formatting https://support.abp.io/QA/Questions/2473/Docs-module-with-Lepton-theme I have the same problem in these tickets. There is a problem with the left side menu with the items overlapping.

  • ABP Framework version: v6.0.1
  • UI type: Blazor
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no

Is there a way to use lepton in normal project and basic in docs module ?

As I mentioned in the title crud page generator does not work. I have tried it in 6.0.0, 6.0.2 and 7.0.0 versions of abp and none of them have worked.The error only occurs if create backend box is checked.

  • ABP Framework version: v6.0.2
  • UI type: Blazor
  • DB provider: EF Core
  • Exception message and stack trace:
  • Steps to reproduce the issue:"
  • Create a basic project then try to create an entity using Crud page generator.

Yes, i did it with abp suite and make sure the versions are a match.

  • ABP Framework version: v7.3.2
  • 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:" Hey! I just want to localize the title of the routes of my module.How can i do it ?

Hi,

We do this in our microservice project.ExampleService::LocalizationKey. ExampleService is the name of our service.

Hi again! Sorry I didnt get what you mean by that. I looked at microservice template documentation but couldnt find anything...

Hi! Thank you for your replies. But it still doesnt work.Here is my code: items-routing.module.ts:

const routes: Routes = [
  { path: 'services', component: ServicesComponent,title:"Services"},
  { path: 'service/::itemId', component: ServicePageComponent,title:"Service" },
  { path: 'item/::itemId', component: ItemPageComponent,title:"Item" },
  { path: '::isMatClass', component: ItemsComponent,title:"Items" },
];

@NgModule({
  imports: [RouterModule.forChild(routes)],
  exports: [RouterModule],
  providers: [
    {
      provide: TitleStrategy,
      useClass: TemplatePageTitleStrategy
    }
  ]
})
export class ItemsRoutingModule{ }

TemplatePageTitleStrategy.ts:

import { LocalizationService } from "@abp/ng.core";
import { Injectable, inject } from "@angular/core";
import { Title } from "@angular/platform-browser";
import { RouterStateSnapshot, TitleStrategy } from "@angular/router";

@Injectable()
export class TemplatePageTitleStrategy extends TitleStrategy {
    protected readonly title = inject(Title);
    protected readonly localizationService = inject(LocalizationService);
  
    override updateTitle(routerState: RouterStateSnapshot) {
      const title = this.buildTitle(routerState);
      const localizedTitle = this.localizationService.instant(title);
      this.title.setTitle(localizedTitle);
    }
  }

Im on turkish language right now and my tr.json has the keys...

Hi again alpisala,

Can you please try to provide it in AppRoutingModule ?

It Worked! Thank you.

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