23

I want to filter the column in alphabetical order here is the code to filter by the size how to do thank you

const columns = [{
      title: 'First Name',
      dataIndex: 'first_name',
      sortDirections: ['descend', 'ascend'],
      key: 'first_name',
      width: '20%',
      sorter: (a, b) => a.first_name.length - b.first_name.length,

    }]
OAH
  • 932
  • 1
  • 8
  • 22

1 Answers1

59

You can use localeCompare()

sorter: (a, b) => a.first_name.localeCompare(b.first_name);
Maheer Ali
  • 32,967
  • 5
  • 31
  • 51