/ng-crmapp

This is CRM APP created using Angular 6 as front end.

Primary LanguageTypeScript

Crmapp

This project was generated with Angular CLI version 6.0.8.

Development server

Run ng serve for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.

Code scaffolding

Run ng generate component component-name to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module.

Build

Run ng build to build the project. The build artifacts will be stored in the dist/ directory. Use the --prod flag for a production build.

Running unit tests

Run ng test to execute the unit tests via Karma.

Running end-to-end tests

Run ng e2e to execute the end-to-end tests via Protractor.

Further help

To get more help on the Angular CLI use ng help or go check out the Angular CLI README.

Let's use the Angular CLI to create the components

AccountListComponent: this component displays and controls a tabular list of accounts AccountCreateComponent: this component displays and controls a form for creating or updating accounts

  • ContactListComponent: displays a table of contacts

  • ContactCreateComponent: displays a form to create or update a contact

  • LeadListComponent: displays a table of leads

  • LeadCreateComponent: displays a form to create or update a lead

  • OpportunityListComponent: displays a table of opportunities

  • OpportunityCreateComponent: displays a form to create or update an opportunity

ng generate component AccountList
ng generate component AccountCreate

ng generate component ContactList
ng generate component ContactCreate

ng generate component LeadList
ng generate component LeadCreate

ng generate component OpportunityList
ng generate component OpportunityCreate
ng generate component Keyup

ANGULAR Template Driven Forms

ng generate class Hero

  • Create a form component

ng generate component HeroForm

There are two changes:

We import FormsModule.

We add the FormsModule to the list of imports defined in the @NgModule decorator. This gives the application access to all of the template-driven forms features, including ngModel.