I am trying to set up ng-admin as described in the docs, but I am getting the following error in the console:
Uncaught Error: [$injector:modulerr] Failed to instantiate module app due to:
Error: [$injector:unpr] Unknown provider:…
I installed this awesome ng2-admin project, it works fine. As I'm new to angular, for experiment I want to used table in one of the dashboard.html div (customizing dashboard page).
I tried, importing TablesModule in DashboardModule, but it did not…
I have this code:
import { Router } from '@angular/router';
Then:
constructor(router: Router) {
console.log(this.router.url);
}
When I load the page, it will first tell me the URL is "/"
Unhandled Promise rejection: Error in ./BaPageTop class…
I am trying to fetch a value from one input field (which is a reference field) to filter some values in another drop down based on first input field in a same form in ng-admin.
I tried to use permanent filters to filter value, it works if i give a…
I am a beginner in AngularJS, I use ng-admin(https://github.com/marmelab/ng-admin), to create an admin panel, but I need to create a previous login authentication view, once authenticated I send the user to the dashboard, somebody had done it…