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
2
votes
1 answer

'Ng2SmartTableModule' does not appear to be an NgModule class.(-996002)

... Create a new project after using yarn add ng2-smart-table Have an error in imports (alias) class Ng2SmartTableModule import Ng2SmartTableModule 'Ng2SmartTableModule' does not appear to be a NgModule class.…
David Buloyan
  • 21
  • 1
  • 2
2
votes
1 answer

problem in running ngx-admin dashboard for angular

i have problems below when installing node modules.pls help Angular CLI: 13.3.0 Node: 16.14.2 here is list of problems any help will be highly appreciated
2
votes
1 answer

Type 'ModuleWithProviders' must have a '[Symbol.iterator]()' method that returns an iterator.ts(2488)

I try to use the Ngx-admin and set the themes but I've got the error: Type 'ModuleWithProviders' must have a 'Symbol.iterator' method that returns an iterator.ts(2488) how can I fix this error? plaese help me export class ThemeModule { static…
2
votes
1 answer

how to include auth token on header everytime http request send?

I use ngx-admin latest version, I have modify my app.module.ts like this: NbAuthModule.forRoot({ strategies: [ NbPasswordAuthStrategy.setup({ name: 'email', baseEndpoint: 'https://localhost:5001', token: { class:…
nightingale2k1
  • 10,095
  • 15
  • 70
  • 96
2
votes
2 answers

How to navigate one step to another steps programmatically in ngx-admin nebular stepper?

I am using nebular ngx-admin template. I am facing some issues in nebular stepper. I have used four steps in one component. I used Nebular API's methods in component file: @ViewChild("stepper") stepper:…
Ragu
  • 772
  • 9
  • 29
2
votes
1 answer

Dynamically update settings Ng2-smart-table

I want to update 'hideSubHeader' value after button click. The value in settings for 'hideSubHeader' gets updated but it does not reflect on my smart table. My Settings, settings = { hideSubHeader: true } After button click, newSettings() { …
shrey shah
  • 91
  • 2
  • 11
2
votes
2 answers

How to apply theme or customize Nebular icons?

I working on the Nebular theme. I have to customize the icons like icon-font-size. I found the documentation here. My question is, How to change default values that are available here. I have…
Udhayakumar
  • 357
  • 5
  • 19
2
votes
1 answer

Angular 9 and ngx-admin nb Date picker invalid despite good format

I have an issue with https://akveo.github.io/nebular/docs/components/datepicker/overview#nbdatepickerdirective . I have reactive form : Component this.addForm = new FormGroup({ 'monthOfChangeStart': new FormControl(), 'monthOfChangeEnd': new…
Viszman
  • 1,378
  • 1
  • 17
  • 47
2
votes
3 answers

actions in the header of an accordion component

I would like to add actions in the header of the accordion component. The only problem is that if you click the action, the accordion will state chnages between collapsed and expanded. example:
J King
  • 4,108
  • 10
  • 53
  • 103
2
votes
1 answer

Added a new route in app-routing.module.ts - ngxAdmin is not working

I am customizing the ngx-admin template, I was trying to add new module in app module. And added its route in app-routing.module.ts. But its not working when i tried it open. It got stuck at loading. There is no error in console too. So I'm not…
Cruiser
  • 35
  • 4
2
votes
0 answers

get user data from NbAuthOAuth2Token angular

i'm using NbAuthOAuth2Token like this this.authService.onTokenChange() .pipe(takeUntil(this.destroy$)) .subscribe((token: NbAuthOAuth2Token) => { this.token = null; if (token && token.isValid()) { this.token = token; } …
naoval
  • 338
  • 6
  • 29
2
votes
1 answer

basic template for ngx-admin with basic beahviour

Is there a starter app which avoids starting with the full template? It should be useful to have a skeleton start with minimum dependencies and then add components\modules from it.
Moebius
  • 73
  • 7
2
votes
1 answer

Angular | ng2-smart-table how to sort table with ServerDataSource

I'm using ng2-smart-table in my angular application. Since we are dealing with massive amount of data, I implemented pagination infrastructure and used ServerDataSource instead of LocalDataSource. Everything works fine until it comes to sorting the…
Or Yaacov
  • 3,597
  • 5
  • 25
  • 49
2
votes
1 answer

ERROR Error: Uncaught (in promise) nb-card-header' is not a known element:

I'm quite new to NGX-Template and Angular. I'm making my way forwards, but got stuck on a issue. I've created a new page: customer. In this page I want to render a nb-card element
Bryan van Rijn
  • 837
  • 10
  • 18
2
votes
5 answers

How to display custom icons on ng2-smart-table?

I can't display custom icons on the actions tab from ng2-smart-table. I have installed Eva Icons from Akevo Team and I want to use them. I have changed the edit button to show some custom icons but the problem is that nothing appears. On the left…
mihaij
  • 95
  • 2
  • 7
1
2
3
9 10