Angular2 ng2-smart-table sorting
Asked Answered
P

2

6

In ng2-smart-table of angular 2 sorting functionality is case sensitive. Are there any options to make sorting table data as case insensitive?

Patricide answered 8/11, 2017 at 7:56 Comment(0)
C
6

You can provide your custom sorting function as the 4th argument in the sort() method.

Example:

let COMPARE_INSENSITIVE = (direction: any, a: any, b: any) => {
  // Converting strings to lowercase
  let first = typeof a === 'string' ? a.toLowerCase() : a;
  let second = typeof b === 'string' ? b.toLowerCase() : b;

  if (first < second) {
     return -1 * direction;
  }
  if (first > second) {
    return direction;
  }
  return 0;
}

ng2-smart-table uses the following default COMPARE function:

export class LocalSorter {

  protected static COMPARE = (direction: any, a: any, b: any) => {
    if (a < b) {
     return -1 * direction;
    }
    if (a > b) {
      return direction;
    }
    return 0;
  }

  static sort(data: Array<any>, field: string, direction: string, customCompare?: Function): Array<any> {

    const dir: number = (direction === 'asc') ? 1 : -1;
    const compare: Function = customCompare ? customCompare : this.COMPARE;

    return data.sort((a, b) => {
      return compare.call(null, dir, a[field], b[field]);
    });
  }
}
Contraception answered 8/11, 2017 at 8:39 Comment(7)
where to insert this code? is this custom function?Patricide
As Lumix wrote, you can provide the attribute compareFunction in table configuration: Documentation with all table configuration propertiesContraception
Is there an error? Can you please provide code or more details?Contraception
organization_name: { title: 'Organization Name', //I added that code here filter:true, sort:true, editable:true, addable:true, width: '25%', },Patricide
The code from Lumix's answer? In that case try changing compareFunction( to compareFunction: ( . If it still doesn't work, please edit your question with the current code and error messageContraception
it is still not wrkng :(Patricide
Let us continue this discussion in chat.Contraception
C
11

Just wanted to throw out if you implement this to make sure you add a : after compareFunction. As shown below...

columns: {
    group_name: {
        title: 'Groupname',
        compareFunction:(direction: any, a: any, b: any) => {
            // Converting strings to lowercase
            let first = typeof a === 'string' ? a.toLowerCase() : a;
            let second = typeof b === 'string' ? b.toLowerCase() : b;

            if (first < second) {
                return -1 * direction;
            }
            if (first > second) {
                return direction;
            }
            return 0;
        }
    }
}
Carlocarload answered 8/11, 2017 at 8:50 Comment(0)
C
6

You can provide your custom sorting function as the 4th argument in the sort() method.

Example:

let COMPARE_INSENSITIVE = (direction: any, a: any, b: any) => {
  // Converting strings to lowercase
  let first = typeof a === 'string' ? a.toLowerCase() : a;
  let second = typeof b === 'string' ? b.toLowerCase() : b;

  if (first < second) {
     return -1 * direction;
  }
  if (first > second) {
    return direction;
  }
  return 0;
}

ng2-smart-table uses the following default COMPARE function:

export class LocalSorter {

  protected static COMPARE = (direction: any, a: any, b: any) => {
    if (a < b) {
     return -1 * direction;
    }
    if (a > b) {
      return direction;
    }
    return 0;
  }

  static sort(data: Array<any>, field: string, direction: string, customCompare?: Function): Array<any> {

    const dir: number = (direction === 'asc') ? 1 : -1;
    const compare: Function = customCompare ? customCompare : this.COMPARE;

    return data.sort((a, b) => {
      return compare.call(null, dir, a[field], b[field]);
    });
  }
}
Contraception answered 8/11, 2017 at 8:39 Comment(7)
where to insert this code? is this custom function?Patricide
As Lumix wrote, you can provide the attribute compareFunction in table configuration: Documentation with all table configuration propertiesContraception
Is there an error? Can you please provide code or more details?Contraception
organization_name: { title: 'Organization Name', //I added that code here filter:true, sort:true, editable:true, addable:true, width: '25%', },Patricide
The code from Lumix's answer? In that case try changing compareFunction( to compareFunction: ( . If it still doesn't work, please edit your question with the current code and error messageContraception
it is still not wrkng :(Patricide
Let us continue this discussion in chat.Contraception

© 2022 - 2024 — McMap. All rights reserved.