I've been playing with the filtering and sorting in dhtmlxGrid (https://dhtmlx.com/docs/products/dhtmlxGrid/samples/08_filtering/01_pro_filter.html) and I have a question: Can we sort the column with the employees' names by the last names without the changing the way they are written?
E.g.:
We have:
Alex Calson
David Edmond
James Brightwood
And after sorting we want to have the names in this order:
James Brightwood
Alex Calson
David Edmond
Is it possible?
The best way for you to reach the required functionality is to create a custom sorting function that will sort the column only by the second part of the value. Here you can find a tutorial:
https://docs.dhtmlx.com/grid__sorting.html#customsortingfunction
and a simple working example: