Implementing NGX Datatable filtering on all columns

后端 未结 8 749
不知归路
不知归路 2021-02-06 04:21

I\'ve been trying to get this working with no luck. I\'ve been referencing these resources for help: http://swimlane.github.io/ngx-datatable/#filter
https://github.com/swiml

相关标签:
8条回答
  • 2021-02-06 04:50

    While storing the data in rows list at that time also initilize perttemp list, so that we can fetch after filter

    updateFilter(event) {
    
        const val = event.target.value.toLowerCase();
        if(val) {
            this.temp = this.rows;
            // filter our data
            const temp = this.temp.filter(function (d) {
              return ( d.name.toLowerCase().indexOf(val) !== -1 || d.email.toLowerCase().indexOf(val) !== -1 || !val);
            });
            this.rows = temp;
        }
        else
        {
            this.rows = this.perttemp;
        }
    }
    
    0 讨论(0)
  • 2021-02-06 04:50

    There were a few issues when using some of the above answers to i am adding my own...

    First its best to store the keys in a global variable, because things get overwritten on each iteration.

    problems solved...

    1. if data is pushed via an input we need to reset the keys especially if there was no data to begin with.

    2. Store everything in a temp variable to always retain original data.**

    I am posting my entire usage here..

    import {
      Component,
      ElementRef,
      EventEmitter,
      Input,
      OnChanges,
      OnInit,
      Output,
      SimpleChanges,
      ViewChild,
    } from '@angular/core';
    import { Router } from '@angular/router';
    
    @Component({
      selector: 'verasci-data-table',
      templateUrl: './data-table.component.html',
      styleUrls: ['./data-table.component.scss'],
    })
    export class DataTableComponent implements OnInit, OnChanges {
      @ViewChild('table') table;
      @Input() rows;
      @Input() columns;
      @Input() searchBar;
      keys;
      temp: Array<any>;
      @Output() selectEvent$ = new EventEmitter();
      selected = [];
      readonly pageLimit = 10;
      readonly headerHeight = 50;
      readonly rowHeight = 50;
    
      constructor(private readonly el: ElementRef, private readonly router: Router) { }
    
      async ngOnInit() {
        this.temp = this.rows;
        this.keys = this.rows[0] ? Object.keys(this.rows[0]) : null;
        setTimeout(() => { this.dataLoaded = true; }, 200);
      }
    
      // we need to reset keys and temp data if data is pushed to the table.
      ngOnChanges(changes: SimpleChanges) {
        this.keys = this.rows[0] ? Object.keys(this.rows[0]) : null;
        this.temp = this.rows;
      }       
    
      filterSingle(event) {
        const val = event.target.value.toLowerCase();
    
        // filter our data
        const temp = this.temp.filter((d) => {
          return d.sponsor.toLowerCase().indexOf(val) !== -1 || !val;
        });
    
        // update the rows
        this.rows = temp;
        // Whenever the filter changes, always go back to the first page
        this.table.offset = 0;
      }
    
      filterMulti(event) {
        // get the value of the key pressed and make it lowercase
        const val = event.target.value.toLowerCase();
        // get the amount of columns in the table
        const colsAmt = this.columns.length;
        // get the key names of each column in the dataset
        const keys = this.keys; // just need to keys from the first set of rw
        // filter our data
        const temp = this.temp.filter(item => {
        // iterate through each row's column data
        for (let i = 0; i < colsAmt; i++) {
        // check for a match on properties that are not null
          if (item[keys[i]] != null && (item[keys[i]].toString().toLowerCase().indexOf(val) !== -1 || !val)) {
            // found match, return true to add to result set
            return true;
          }
         }
       });
        // update the rows
        this.rows = temp;
        // Whenever the filter changes, always go back to the first page
        this.table.offset = 0;
      }
    
      onSelect({ selected }) {
        this.selectEvent$.emit({ selected: selected[0] });
      }
    
    }
    
    0 讨论(0)
提交回复
热议问题