Starts in:
0 DAY
1 HR
15 MIN
52 SEC
Starts in:
0 D
1 H
15 M
52 S

Activities of "Anjali_Musmade"

Hello,

I hope you have selected Blazor WASM UI While creating an application as shown in the screenshot It will create all the initially required code to run your application and after that, you can develop as per your requirements

for more details please refer https://abp.io/docs/latest/get-started/microservice

Thanks,

Hello,

Please check similar issue https://abp.io/support/questions/5817/Register-user-from-AzureAD-with-additional-info

Thanks

Answer

Hello nabass,

could you please accept the answer and close the ticket if your issue is resolved?

Thanks

Answer

Hello nabass,

Thanks for updating.

Now to hide side menu you need to implement AfterViewInit in app.component.ts file and add below code

ngAfterViewInit(): void {
     if (!document.getElementById('lpx-wrapper').classList.contains('hover-trigger') && this.authService.isAuthenticated) {
      document.getElementById('lpx-wrapper').classList.add('hover-trigger');
      document.getElementById('lpx-wrapper').classList.add('initial-hover');
    }
  }

now your app.component.ts file code will look like this

It will result after login like

I hope I answered your question.

Thanks, Anjali

Answer

Hello nabass,

If you want to navigate the Pos page after logging in, add the code below to your app.component.ts In my example I have taken products page

export class AppComponent implements OnInit {

constructor(private authService: AuthService,
            private router:Router){}

ngOnInit() {

  if(this.authService.isAuthenticated){
       this.router.navigate(['/products']);
  }
  else{
      this.router.navigate(['/']);
  }
}
}

If you require I can share sample project too? please let me know if needed.

I will give you a workaround to hide the sidemenu bar asap.

Thanks,

Answer

Hello nabass,

I apologize for the delay. Please allow some time I am working on it.

Thanks

Hi,

please check https://www.npmjs.com/package/@volo/abp.commercial.ng.ui?activeTab=code

Thanks

Answer

Ok Let me check ...

Hello,

Please checkout this book page https://abp.io/docs/latest/tutorials/book-store/part-02?UI=NG&DB=EF#bookcomponent

thanks,

Answer

Hello,

loginPage has a returnUrl parameter in MVC side. If you send a returnUrl parameter it should navigate to your URL

And to hide side menu please check the similar issue if it helps you https://abp.io/support/questions/1664/Hide-menu-after-Login

Thanks

Showing 141 to 150 of 1209 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 20, 2024, 13:06