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
0
votes
0 answers

Remove/Deactivate Pace js from ngx-admin

I want to remove/deactivate pace progress loader from ngx-admin in Angular 12. I already removed pace.theme.scss file inside @theme/styles and removed import & include pace-theme. After removing these, a small circle appear in the upper right corner…
0
votes
0 answers

redirect login in ngx admin to dashboard

I am using the NGX-ADMIN nebular template in angular, I want when I press the login button to redirect me to the dashboard of the template, what I did was to check the documentation and found that I could use NbPasswordAuthStrategy in the…
0
votes
0 answers

How can I pass data from custom component(nb-select) to main component(ng2-smart-table)

I'm trying to get selected data from the component nb-select and pass it to ng2 smart table , after implementing the code below the nb-select diplayed correctly in the cell of the table also I can see the the data selected but in nb-list Component…
Fredrick
  • 37
  • 3
0
votes
0 answers

does it take long to install "npm install --global --production windows-build-tools"

I'm trying to fix gyp errors for ngx-admin by '''npm install --global --production windows-build-tools''' but it seems to be taking too long.
0
votes
1 answer

angular style.background-image binding

in ngx-admin, there is style.background-image attribute, which library parses this style.background-image ?
Lydon Ch
  • 8,637
  • 20
  • 79
  • 132
0
votes
1 answer

How to change from iso date to just plain date ? (nebular datepicker)

I use nebular datepicker on my project, on backend we just need the date only without hour and min, so we trim the date. but nebular sending the date on iso date format. thats the problem. When I type like Jul 23 2021, the date in my form formated…
nightingale2k1
  • 10,095
  • 15
  • 70
  • 96
0
votes
0 answers

how to override nb-theme font family?

I want to apply two different font-family to my app, each for a different language. I have both fonts files in my assets folder and have used @font-face to define them as you see here @font-face { font-family: "myArabicFont"; src:…
Hamoghamdi
  • 43
  • 1
  • 7
0
votes
1 answer

Nebular Ngx-admin , how can i change width of nb-auth-block from 35 rem to full width

I created a new component for login and register, and i want to change the width of the content, but the nb-auth-block tag has always max-width:35rem; I tried to change it in auth.component.scss but didn't work, and everywhere in code where it was…
0
votes
1 answer

how to change p-table background color when theme changes to dark theme in ngx-admin angular

I am using ngx-admin template and for my table. I don't use ng2-smart-table. I tried to change whole page to dark theme. full page changed to dark mode except table. The table is still white color. How can i change The table color to dark theme…
hanushi
  • 119
  • 6
  • 14
0
votes
1 answer

Integrate Angular Material theme into existing ngx-admin project

In the ngx-admin material theme branch they say: Already using ngx-admin and willing to switch to material theme? Material theme is backward-compatible. Check out the article describing how to do that. Where is the article that talk about that? Or…
marcAndreG
  • 161
  • 1
  • 1
  • 10
0
votes
0 answers

Leaflet - How can I remove the old moving markers from the map's background?

I have almost 500 markers, and these markers have another marker. These two markers are also in motion. It gets a location update every 10 seconds. Black circle marker is main marker, blue one is connected marker: I control the connected marker…
0
votes
2 answers

ngx-admin / nebular how to create page outside pages module?

I just experimenting ngx-admin, I want to create a page that has no header and footer like pages, so I create a module with ng g m print --route print --module app.module inside routes export const routes: Routes = [ { path: 'pages', …
nightingale2k1
  • 10,095
  • 15
  • 70
  • 96
0
votes
1 answer

nb-select on nb-stepper giving error- Form submission canceled because the form is not connected (NgxAdmin)

I get an error (Form submission canceled because the form is not connected) when moving to the next step in my stepper because of the nb-select. I have a feeling that the nb-option "value" is not properly linking the the formControlName (kinda as…
CompiledIO
  • 160
  • 16
0
votes
1 answer

Nebular common sidebar footer tag does not wrap the menu items correctly

I've tried combination of nebular documentation and ngx-admin examples to create the sidebar footer. Using the same structure design @theme/layouts/one-column and there I've created the sidebar-footer since it's the right place for that to display…
khashashin
  • 1,058
  • 14
  • 40
0
votes
1 answer

Add custom sub-header action (ng2-smart-table)

I would like to know if it is possible to add a custom global table action which replaces the 'Add new' button for the ng2-smart-table smart table package, which I use as part of Nebular admin dashboard (https://akveo.github.io/nebular/). In this…