Skip to content

You can also fetch the data from a server using an Ajax call

Notifications You must be signed in to change notification settings

tanujsahu/angular_datatable_

Repository files navigation

Datatable

This project was generated with Angular CLI version 15.0.5.

Development server

Run ng serve for a dev server. Navigate to http://localhost:4200/. The application 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.

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 a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities.

Further help

To get more help on the Angular CLI use ng help or go check out the Angular CLI Overview and Command Reference page.

Install Datatable

ng add angular-datatables
  • Select datatable type ( DataTables (Default) )

Install more required library for datatable

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

Import datatable module in your module.ts

import { DataTablesModule } from "angular-datatables";
imports: [DataTablesModule]

Add path inside angular json

"projects": {
    "your-app-name": {
      "architect": {
        "build": {
          "options": {
            "styles": [
              "node_modules/datatables.net-dt/css/jquery.dataTables.css"
            ],
            "scripts": [
              "node_modules/jquery/dist/jquery.js",
              "node_modules/datatables.net/js/jquery.dataTables.js"
            ]
          }
}

create arrays for column and datalist

cloumns = ['Id', 'firstName', 'lastName']
employeeList = [
    { Id: 1, firstName: "John", lastName: "Doe" },
    { Id: 2, firstName: "Jane", lastName: "Smith" },
    { Id: 3, firstName: "Bob", lastName: "Johnson" }
];

write html code

<table datatable class="row-border hover">
  <thead>
    <tr>
      <th *ngFor="let column of cloumns">{{ column }}</th>
    </tr>
  </thead>
  <tbody>
    <tr *ngFor="let emp of employeeList">
      <td>{{ emp.Id }}</td>
      <td>{{ emp.firstName }}</td>
      <td>{{ emp.lastName }}</td>
    </tr>
  </tbody>
</table>

About

You can also fetch the data from a server using an Ajax call

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published