Hello friends, welcome back to my blog. Today in this blog post, I am going to show you, Angular 17 Datatable with Dynamic Data Working Example.
Guys in this post we will cover below things:
- Angular 17
- Datatable with dynamic data in Angular 17
- Bootstrap 5 addition in Angular 17
Angular 17 came and if you are new then you must check below link:
Friends now I proceed onwards and here is the working code snippet and please use carefully this to avoid the mistakes:
1. Firstly friends we need fresh angular 17 setup and for this we need to run below commands but if you already have angular 17 setup then you can avoid below commands. Secondly we should also have latest node version installed on our system:
npm install -g @angular/cli ng new angulardatatable //Create new Angular Project cd angulardatatable // Go inside the Angular Project Folder
2. Now friends, here we need to run below commands into our project terminal to install datatable modules, bootstrap(for good looks), jquery modules into our angular application:
I am also adding bootstrap to make datatable looks good.
npm install jquery --save npm install datatables.net --save npm install datatables.net-dt --save npm install angular-datatables --save npm install @types/jquery --save-dev npm install @types/datatables.net --save-dev npm install bootstrap --save npm i @popperjs/core npm install datatables.net-buttons --save npm install datatables.net-buttons-dt --save npm install @types/datatables.net-buttons --save-dev npm install jszip --save
3. After done with commands add below code into you angular.json file:
... "styles": [ "src/styles.css", "node_modules/datatables.net-dt/css/jquery.dataTables.css", "node_modules/bootstrap/dist/css/bootstrap.min.css" ], "scripts": [ "node_modules/jquery/dist/jquery.js", "node_modules/datatables.net/js/jquery.dataTables.js", "node_modules/bootstrap/dist/js/bootstrap.min.js", "node_modules/jszip/dist/jszip.js", "node_modules/datatables.net-buttons/js/dataTables.buttons.js", "node_modules/datatables.net-buttons/js/buttons.colVis.js", "node_modules/datatables.net-buttons/js/buttons.flash.js", "node_modules/datatables.net-buttons/js/buttons.html5.js", "node_modules/datatables.net-buttons/js/buttons.print.js" ] ...
4. Now friends we just need to add below code into src/app/app.component.ts file:
import { Component } from '@angular/core'; import { CommonModule } from '@angular/common'; import { RouterOutlet } from '@angular/router'; import {DataTablesModule} from 'angular-datatables'; import { HttpClientModule } from '@angular/common/http'; import { HttpClient } from '@angular/common/http'; @Component({ selector: 'app-root', standalone: true, imports: [CommonModule, RouterOutlet, DataTablesModule, HttpClientModule], templateUrl: './app.component.html', styleUrls: ['./app.component.css'] }) export class AppComponent { title = 'angular17'; data:any; constructor(private http: HttpClient){ //get request from web api this.http.get('https://jsonplaceholder.typicode.com/users').subscribe(data => { this.data = data; setTimeout(()=>{ $('#datatableexample').DataTable( { pagingType: 'full_numbers', pageLength: 5, processing: true, lengthMenu : [5, 10, 25], } ); }, 1); }, error => console.error(error)); } }
6. Now friends we need to add below code into app.component.html file to get final output on web browser:
<div class="container p-5" <table class="table table-striped table-bordered table-sm row-border hover" id="datatableexample"> <thead> <tr> <th>ID</th> <th>Name</th> <th>Email</th> </tr> </thead> <tbody> <tr *ngFor="let group of data"> <td>{{group.id}}</td> <td>{{group.name}}</td> <td>{{group.email}}</td> </tr> </tbody> </table> </div>
Now we are done friends and please run ng serve command and if you have any kind of query then please do comment below.
Note: Friends, I just tell the basic setup and things, you can change the code according to your requirements. For better understanding must watch video above.
I will appreciate that if you will tell your views for this post. Nothing matters if your views will be good or bad.
Jassa
Thanks
Hello, I wanted to tell you that I am programming in Angular 17.1.0 and I made the data table project and it sends me this error “✘ [ERROR] Could not resolve “node_modules/datatables.net/js/jquery.dataTables.js” [plugin angular-script-global] ”
and I want to know how to solve it
Hi do this below:
npm uninstall angular-datatables
npm install angular-datatables@6.0.0
npm start