Je veux filtrer la colonne par ordre alphabétique voici le code à filtrer par la taille comment faire merci
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,
}]
Vous pouvez utiliser localeCompare()
sorter: (a, b) => a.first_name.localeCompare(b.first_name);