Questions tagged [ngx-admin]

Questions regarding set up, implementation, and customization of the ngx-admin open source admin front end template

ngx-admin is the most popular admin dashboard based on Angular 9+ and Nebular with Eva Design System support.

Website

github

144 questions
1
vote
4 answers

Load URL from Router for use in NgModule

I am setting up a blue/green deployment and am trying to change the redirectUri below based on the current url the user is viewing (redirectUri: this.router.url + '/callback',). I am receiving Uncaught TypeError: Cannot read property 'router' of…
Andrew Campbell
  • 17,665
  • 2
  • 16
  • 25
1
vote
1 answer

How to add tab navigation below the header?

I want make a tab navigation below the header. and when one of tab is clicked, show sidebar of the tab and its contents. like this https://drive.google.com/open?id=1iQ9vCslTwUt6Zo4-WLHr_vjAL8gvi_3A for that, where should I start and how? after many…
Jihui Choi
  • 59
  • 1
  • 7
1
vote
2 answers

Problem with configuring NbAuthJWTInterceptor to format JWT tokens appropriately

I am using ngx-admin for my new app. I have utilised the Nebular Auth framework to use JWT tokens to enable access to the back-end REST server. I can successfully authenticate and access the REST server when using Postman to test the API by…
Dave Boulden
  • 23
  • 1
  • 6
1
vote
1 answer

Configure login page with firebase database

I am using ngx-admin and so far i have been able to create the required pages that will be shown on the dashboard but now i am trying to configure the auth module in such a way that on startup the login page will be shown to the user and after…
Ehsan Nissar
  • 643
  • 2
  • 13
  • 35
1
vote
1 answer

ngx-admin new module and components not running

I am using Akveo/ngx-admin template for my project. I have created a new module inside the pages module and created some components inside my new module. In the pages module there are already some modules that were already there so i just created…
Ehsan Nissar
  • 643
  • 2
  • 13
  • 35
1
vote
0 answers

How to load dynamic data in Multiple x-axis chart in ngx-admin

I’m setting up an angular project using ngx-admin, and want to show some dynamic data in 'Multiple x-axis chart'. Data on labels, x-axis & y-axis are the following:- Labels should be ModuleI,Module II, Module III, X-axis with dates & Y-axis with…
SSS
  • 23
  • 1
  • 7
1
vote
1 answer

How add angular/material for ngx-admin

I'm working with ngx-admin and it is familiar with Nebular Theme. But I want to add angular/material for it. I used lazyloading for this project. I tried install material for this by npm i @angular-materials/ngx-admin command. but it not success. I…
ruwan liyanage
  • 419
  • 2
  • 11
  • 24
1
vote
0 answers

ERROR node_modules/@nebular/theme/index"' has no exported member 'NbWindowModule'

I am implementing a mean stack project using ngx- admin template. There I want to open a window by clicking a button in header component. For that I used 'NbWindowService '. I imported 'NbWindowModule' into the module from '@nebular/theme'. But it…
RMD
  • 311
  • 1
  • 7
  • 22
1
vote
1 answer

How to add nebular icons to an angular project?

I'm trying to create a Webapp with Angular 7 and Nebular. Therefore I used schematics to install Nebular: ng add @nebular/theme So I do have nebular-icons within my node_modules and included in my package.json as dependency: "dependencies": { …
StefanK
  • 97
  • 3
  • 11
1
vote
1 answer

How to add a login page to Nebular ngx-admin without using any neb auth module?

I am struck in showing my own login page component in nebular ngx-admin project .,always it's redirecting to home page..if someone had included any login page please me the steps u did to create your own component and how included in ngx-admin…
vekabh517
  • 11
  • 3
1
vote
4 answers

StaticInjectorError(AppModule)[NbIsGrantedDirective -> NbAccessChecker]

I am using NbAuthJWTToken with ngx-admin to make authentication but I got this error : ERROR Error: Uncaught (in promise): Error: StaticInjectorError(AppModule)[NbIsGrantedDirective -> NbAccessChecker]: StaticInjectorError(Platform:…
Selmi Med
  • 67
  • 5
  • 12
1
vote
1 answer

Obtaining the value column key inside a cell renderer?

Is it possible to obtain the column key inside a cell renderer? For example in the `CustomRenderComponent Demo the value of the cell and the row data is injected like this: @Input() value: string | number; @Input() rowData: any; is there a way to…
Ole
  • 41,793
  • 59
  • 191
  • 359
0
votes
0 answers

upgraded angular 10 to 16, nebular from 6.0.0 to ^9.0.0 facing scss files issue

using ngx-admin panel with nebular in angular when angular was 10 everything is fine with nebular/theme 6 i upgraded angular to 16, there are so many issues .changed nebular/theme to ^9.0.0 I am able to compile successfully but CSS or ui is…
ramya
  • 1
  • 2
0
votes
0 answers

Got SyntaxError: expected expression, got '?' in mains.js, script.js and polyfills.js after migrating to Angular 14

After migrate my app from Angular 13 to 14, and update severals modules, my app builds with no errors, but does not work on the browser. I'm getting this errors on the browser console: errors in browser console SyntaxError: expected expression, got…
0
votes
0 answers

Icons not showing up in ng2-smart-table with ngx-admin theme

I am using the ngx-admin theme to style my ng2-smart-table in an Angular project. I have followed the configuration steps outlined in the documentation, including installing the necessary dependencies and importing the required styles in my…